直接奉上代码
/**
* $path 文件路径
* 调用方法
* $model= new Model();
* $model->del_file("D:\sign\backend\web\upload");
*/
class Model{
public function del_file($path = '.') {
$current_dir = opendir($path); //opendir()返回一个目录句柄,失败返回false
while(($file = readdir($current_dir)) !== false) { //readdir()返回打开目录句柄中的一个条目
$sub_dir = $path . DIRECTORY_SEPARATOR . $file; //构建子目录路径
if($file == '.' || $file == '..') {
continue;
} else if(is_dir($sub_dir)) { //如果是目录,进行递归
$this->del_file($sub_dir);
} else { //如果是文件,判断是24小时以前的文件进行删除
$files = fopen($path.'/'.$file,"r");
$f =fstat($files);
fclose($files);
if($f['mtime']<(time()-3600*24)){
if(@unlink($path.'/'.$file)){
return "删除文件【".$path.'/'.$file."】成功!";
}else{
return "删除文件【".$path.'/'.$file."】失败!";
}
}
}
}
}
}
网友评论