PHP删除符合条件的整个目录
<?php
/**
* @name delFile函数与delDir函数一起使用, 删除符合条件的整个目录
* @param string $path 指定操作路径
* @return null
* @example delDir(‘D:\web\Apache\htdocs\KeyShareMall\Pc\ThinkPHP‘);
*/
// 删除目录
function delFile($path)
{
if (empty($path)) {
echo ‘请指定要操作的文件路径‘;
return false;
}
if ( $handle = opendir ( $path )) {
while ( false !== ( $fileName = readdir ( $handle ))) {
if ( $fileName != "." && $fileName != ".." ) {
if (is_file($path . ‘/‘ . $fileName)) {
unlink($path . ‘/‘ . $fileName);
}
if (is_dir($path . ‘/‘ . $fileName)) {
delFile($path . ‘/‘ . $fileName);
}
}
}
rmdir($path);
closedir ( $handle );
}
}
function delDir($path = ‘‘)
{
if (empty($path)) {
echo ‘请指定要操作的文件路径‘;
return false;
} else {
$path = str_replace(‘\\‘, ‘/‘, $path);
}
if ( $handle = opendir($path)) {
while (false !== ( $fileName = readdir ( $handle ))) {
if ( $fileName != "." && $fileName != ".." ) {
if (is_dir($path . ‘/‘ . $fileName)) {
echo $fileName . "<br />";
// 删除含有Zip字符的目录
if (strpos($fileName, ‘Zip‘) !== false) {
delFile($path . ‘/‘ . $fileName);
} else {
delDir($path . ‘/‘ . $fileName);
}
}
}
}
closedir ( $handle );
}
}
delDir(‘D:\web\Apache\htdocs\KeyShareMall\Pc\ThinkPHP‘);
?>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。