Heim  >  Artikel  >  Backend-Entwicklung  >  php递归创建和删除文件夹的代码

php递归创建和删除文件夹的代码

WBOY
WBOYOriginal
2016-07-25 09:08:13929Durchsuche
  1. /**

  2. * 目录生成类 :UtilsMakeDir
  3. * @author yepeng
  4. * @since 2010.3.18
  5. */
  6. class UtilsMakeDir{
  7. //基目录 建立目录时不会对这个目录进行建立。这应该是个已经存在的目录
  8. private static $makeBasePath = 'video';
  9. private static $delBasePath = 'video';
  10. /**

  11. * 递归建立目录,
  12. * 建立成功返回这个全路径,
  13. * 建立失败返回false
  14. * @param String $pathString 路径字符串如'2/3/4/5'
  15. * @return false or string
  16. public static function makeDir($pathString){

  17. $pathArray = explode('/',$pathString);
  18. if(empty($pathArray[0])){
  19. return false;
  20. }
  21. $path = array_shift($pathArray);
  22. self::$basePath = self::$basePath.'/'.$path;
  23. if(is_dir(self::$basePath)){
  24. $path = implode('/',$pathArray);
  25. self::makeDir($path);
  26. }
  27. else{
  28. @mkdir(self::$basePath,0777);
  29. $path = implode('/',$pathArray);
  30. self::makeDir($path);
  31. }
  32. if(is_dir(self::$basePath)){
  33. return self::$basePath;
  34. }
  35. else{
  36. return false;
  37. }
  38. } */
  39. /**
  40. * 建立目录,包括基目录,比如图片要放在video(video为存在的目录)下面,你传入的参数应该是video/2/3/4
  41. * 建立成功返回这个全路径,
  42. * 建立失败返回false
  43. * @param String $pathString 路径字符串如'video/2/3/4/5'
  44. * @return false or string
  45. **/
  46. public static function makeDir($pathString){
  47. $pathArray = explode('/',$pathString);
  48. $tmpPath = array_shift($pathArray);
  49. foreach ($pathArray as $val){
  50. $tmpPath .= "/".$val;
  51. if(is_dir($tmpPath)){
  52. continue;
  53. }
  54. else {
  55. @mkdir($tmpPath,0777);
  56. }
  57. }
  58. if(is_dir($tmpPath)){
  59. return $tmpPath;
  60. }
  61. else{
  62. return false;
  63. }
  64. } /**
  65. * 递归删除
  66. * 删除目录及文件
  67. * 如果传一个‘video/2/3/4'这样的路径将删除4下的所有目录和文件
  68. * @param string $stringPath
  69. */
  70. public static function delDir($stringPath){
  71. if(!$handle = @opendir($stringPath)){
  72. return false;
  73. }
  74. while (false !==($file = readdir($handle))){
  75. if($file !='.' && $file != '..'){
  76. $tmpdir = $stringPath."/".$file;
  77. if(is_dir($tmpdir)){
  78. self::delDir($tmpdir);
  79. rmdir($tmpdir);
  80. }
  81. if(is_file($tmpdir)){
  82. unlink($tmpdir);
  83. }
  84. }
  85. }
  86. closedir($handle);
  87. }}
  88. ?>
复制代码

循环与递归,在winxp下测试成功,只要php文件编码为gb2312,文件名随意,应该把文件名改为编码为gb2312就可以了。

  1. deltree('./复件 复件 复件 复件 复件 复件 复件 复件 aaa');
  2. function deltree($pathdir)
  3. {
  4. //echo $pathdir.'
    ';//我调试时用的
  5. if(is_empty_dir($pathdir))//如果是空的
  6. {
  7. rmdir($pathdir);//直接删除
  8. }
  9. else
  10. {//否则读这个目录,除了.和..外
  11. $d=dir($pathdir);
  12. while($a=$d->read()) //下只删除$pathdir下
  13. {
  14. if(is_file($pathdir.'/'.$a) && ($a!='.') && ($a!='..'))
  15. {
  16. unlink($pathdir.'/'.$a); //如果是文件就直接删除
  17. }elseif(is_dir($pathdir.'/'.$a) && ($a!='.') && ($a!='..')) //如果是目录
  18. {
  19. if(!is_empty_dir($pathdir.'/'.$a))//是否为空
  20. {
  21. deltree($pathdir.'/'.$a); //如果不是,调用自身
  22. }else
  23. {
  24. rmdir($pathdir.'/'.$a); //如果是空就直接删除
  25. }
  26. }
  27. }
  28. $d->close();
  29. //echo "必须先删除目录下的所有文件";//我调试时用的
  30. rmdir($pathdir);
  31. }
  32. }
  33. function is_empty_dir($pathdir)
  34. {
  35. //判断目录是否为空,我的方法不是很好吧?除了.和..之外有其他东西不是为空
  36. $d=opendir($pathdir);
  37. $i=0;
  38. while($a=readdir($d))
  39. {
  40. $i++;
  41. }
  42. closedir($d);
  43. if($i>2){return false;}
  44. else return true;
  45. }
  46. ?>
复制代码

方法二 在winxp下测试成功,只要php文件编码为gb2312,文件名随意,应该把文件名改为编码为gb2312,就行,没测。

  1. header("Content-Type:text/html; charset=gb2312");
  2. if(deleteDir('./复件 复件 复件 复件 复件 复件 复件 复件 复件 复件 复件 aaa'))
  3. echo "删除成功";
  4. function deleteDir($dir)
  5. {
  6. if (@rmdir($dir)==false && is_dir($dir)) //删除不了,进入删除所有文件
  7. {
  8. if ($dp = opendir($dir))
  9. {
  10. while (($file=readdir($dp)) != false)
  11. {
  12. if($file!='.' && $file!='..')
  13. { //echo $file=$dir.'/'.$file;echo '
    ';
  14. $file=$dir.'/'.$file;
  15. if (is_dir($file)) //是真实目录
  16. {
  17. deleteDir($file);
  18. }else {
  19. unlink($file);
  20. }
  21. }
  22. }
  23. closedir($dp);
  24. }else
  25. {
  26. return false;
  27. }
  28. }
  29. if (is_dir($dir) && @rmdir($dir)==false) //是目录删除不了
  30. return false;
  31. return true;
  32. }
  33. ?>
复制代码

方法三、在winxp下测试成功,是列出目录文件 很好用。

  1. function listDir($dir)
  2. {
  3. static $break=0; if($break++==100) exit;//控制深入层数
  4. static $i=-0;
  5. if(is_dir($dir))//目录
  6. {
  7. if ($dh = opendir($dir))//打开
  8. {
  9. while (($file = readdir($dh)) !== false)
  10. {
  11. if((is_dir($dir."/".$file)) && $file!="." && $file!="..")//目录
  12. {
  13. $j=$i;while($j--) echo "-------";
  14. echo "目录名:".$dir."/".$file."

    ";
  15. $i++;
  16. listDir($dir."/".$file);
  17. $i--;
  18. }
  19. else
  20. {
  21. if($file!="." && $file!="..")
  22. {
  23. $j=$i;while($j--) echo "-------";
  24. $ext=trim(extend($file));
  25. //if($ext=='jpg')
  26. echo $dir.'/'.$file."
    ";
  27. }
  28. }
  29. }
  30. closedir($dh);
  31. }
  32. }
  33. }
  34. function extend($file_name)
  35. {
  36. $retval="";
  37. $pt=strrpos($file_name, ".");
  38. if ($pt) $retval=substr($file_name, $pt+1, strlen($file_name) - $pt);
  39. return ($retval);
  40. }
  41. //开始运行
  42. listDir(".");
  43. ?>
复制代码



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn