标签:
1. exec("rd /s /q y12");命令删除目录$path=‘y12/aa/bb/cd/ff/aa/ee/dd‘;
//mkdir($path,0777,true);
exec("rd /s /q y12");
$path=‘y12/aa/bb/cd/ff/aa/ee/dd‘;
function delTree($dir) {
$files = array_diff(scandir($dir), array(‘.‘,‘..‘));
foreach ($files as $file) {
(is_dir("$dir/$file") && !is_link($dir)) ? delTree("$dir/$file") : unlink("$dir/$file");
}
return rmdir($dir);
}
delTree(‘y12‘);
标签:
原文地址:http://www.cnblogs.com/lsr111/p/4507607.html