首页 > 语言 > PHP > 正文

如何用php创建与删除多级目录函数

2024-09-04 11:47:42
字体:
来源:转载
供稿:网友
  1.  
  2. function deldir($dir)  
  3. {  
  4.    $dh=opendir($dir);  
  5.    while ($file=readdir($dh))  
  6.    {  
  7.   if($file!="." && $file!="..")  
  8.   {  
  9. $fullpath=$dir."/".$file;  
  10. if(!is_dir($fullpath))  
  11. {  
  12. unlink($fullpath);  
  13. }  
  14. else 
  15. {  
  16. $this -> deldir($fullpath);  
  17. }  
  18.   }  
  19.    }  
  20.    closedir($dh);  
  21.    if(rmdir($dir))  
  22.    {  
  23. return true;  
  24.    }  
  25.    else 
  26.    {  
  27. return false;  
  28.    }  
  29. }  
  30.  
  31. function createFolder($path)  
  32. {  
  33.    if (!file_exists($path)){  
  34.    createFolder(dirname($path));  
  35.    mkdir($path, 0777);  
  36. }  

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表