delpath.php 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. define('InEmpireCMSDelPath',TRUE);
  3. //删除目录
  4. //本程序由wm_chief原创,如要转载,请注明作者与来源(http://www.phome.net)
  5. class del_path{
  6. function wm_chief_delpath($del_path)
  7. {
  8. if(!file_exists($del_path))//目标目录不存在则建立
  9. {
  10. echo"Directory not found.";
  11. return false;
  12. }
  13. $hand=@opendir($del_path);
  14. $i=0;
  15. while($file=@readdir($hand))
  16. {
  17. $i++;
  18. if($file!="."&&$file!="..")
  19. {
  20. //目录
  21. if(is_dir($del_path."/".$file))
  22. {
  23. $del_s_path=$del_path."/".$file;
  24. $this->wm_chief_delpath($del_s_path);
  25. }
  26. else
  27. {
  28. $del_file=$del_path."/".$file;
  29. $this->wm_chief_file($del_file);
  30. }
  31. }
  32. }
  33. @closedir($hand);
  34. $this->wm_chief_path($del_path);
  35. return true;
  36. }
  37. //删除文件
  38. function wm_chief_file($del_file)
  39. {
  40. @unlink($del_file);
  41. }
  42. //删除目录
  43. function wm_chief_path($del_path)
  44. {
  45. @rmdir($del_path);
  46. }
  47. }
  48. //本程序由wm_chief原创,如要转载,请注明作者与来源(http://www.phome.net)
  49. ?>