删除无限级目录与文件代码共享
作者:bea
<?//删除目录//本程序由wm_chief原创,如要转载,请注明作者与来源(http://www.phome.net)classdel_path{functionwm_chief_delpath($del_path){if(!file_exists($del_path))//目标目录不存在则建立{echo"目录不存在";returnfalse;}$hand=opendir($del_path);$i=0;while($file=readdir($hand)){$i++
<?
//删除目录
//本程序由wm_chief原创,如要转载,请注明作者与来源(http://www.phome.net)
class del_path
{
function wm_chief_delpath($del_path)
{
if(!file_exists($del_path))//目标目录不存在则建立
{echo"目录不存在";return false;}
$hand=opendir($del_path);
$i=0;
while($file=readdir($hand))
{$i++;
if($i==1||$i==2)
{continue;}
if(!(strchr($file,".")))
{
$del_s_path=$del_path."/".$file;
$this->wm_chief_delpath($del_s_path);
}
else
{
$del_file=$del_path."/".$file;
$this->wm_chief_file($del_file);
}
}
closedir($hand);
$this->wm_chief_path($del_path);
return true;
}
//删除文件
function wm_chief_file($del_file)
{
unlink($del_file);
}
//删除目录
function wm_chief_path($del_path)
{
rmdir($del_path);
}
}
$DelPath="DelPath";//要删除的目录
$wm_chief=new del_path();
$wm_chief_ok=$wm_chief->wm_chief_delpath($DelPath);
if($wm_chief_ok)
{
echo"删除完毕";
}
有用 |
无用
//删除目录
//本程序由wm_chief原创,如要转载,请注明作者与来源(http://www.phome.net)
class del_path
{
function wm_chief_delpath($del_path)
{
if(!file_exists($del_path))//目标目录不存在则建立
{echo"目录不存在";return false;}
$hand=opendir($del_path);
$i=0;
while($file=readdir($hand))
{$i++;
if($i==1||$i==2)
{continue;}
if(!(strchr($file,".")))
{
$del_s_path=$del_path."/".$file;
$this->wm_chief_delpath($del_s_path);
}
else
{
$del_file=$del_path."/".$file;
$this->wm_chief_file($del_file);
}
}
closedir($hand);
$this->wm_chief_path($del_path);
return true;
}
//删除文件
function wm_chief_file($del_file)
{
unlink($del_file);
}
//删除目录
function wm_chief_path($del_path)
{
rmdir($del_path);
}
}
$DelPath="DelPath";//要删除的目录
$wm_chief=new del_path();
$wm_chief_ok=$wm_chief->wm_chief_delpath($DelPath);
if($wm_chief_ok)
{
echo"删除完毕";
}
猜你喜欢
您可能感兴趣的文章:
- 详细介绍:Apache+PHP+MySQL配置攻略
- PHP环境搭建最新方法
- 初学者入门:细述PHP4的核心Zend
- PHP在XP下IIS和Apache2服务器上的安装
- PHP5.0对象模型探索之抽象方法和抽象类
- PHP 5.0对象模型深度探索之绑定
- PHP中的串行化变量和序列化对象
- 最令PHP初学者头痛的十四个问题
- Windows下的PHP5.0安装配制详解
- PHP.MVC的模板标签系统(五)
- PHP.MVC的模板标签系统(四)
- PHP.MVC的模板标签系统(三)
- PHP.MVC的模板标签系统(二)
- PHP.MVC的模板标签系统(一)
- apache+mysql+php+ssl服务器之完全安装攻略
- Windows下PHP5和Apache的安装与配置
- 玩转图像函数库—常见图形操作
- 转换中文为unicode 转换unicode到正常文本
- 生成静态页面的PHP类