Heim  >  Artikel  >  Backend-Entwicklung  >  php递归删除目录的例子

php递归删除目录的例子

WBOY
WBOYOriginal
2016-07-25 08:51:31967Durchsuche
  1. function deletedir($dir){
  2. if(!handle=@opendir($dir)){ //检测要打开目录是否存在
  3. die("没有该目录");
  4. }
  5. while(false !==($file=readdir($handle))){
  6. if($file!=="."&&$file!==".."){ //排除当前目录与父级目录
  7. $file=$dir .DIRECTORY_SEPARATOR. $file;
  8. if(is_dir($file)){
  9. deletedir($file);
  10. }else{
  11. if(@unlink($file)){
  12. echo "文件$file删除成功。
    ";
  13. }else{
  14. echo "文件$file删除失败!
    ";
  15. }
  16. }
  17. }
  18. if(@rmdir($dir)){
  19. echo "目录$dir删除成功了。
    \n";
  20. }else{
  21. echo "目录$dir删除失败!
    \n";
  22. }
  23. }
  24. //测试程序
  25. $dir="/var/www/test";
  26. deletedir($dir);
  27. ?>
复制代码

在 /var/www/test 文件夹下创建一些文件夹和文件。 shell> touch aaa shell> touch bbb shell> touch ccc shell> touch eee shell> touch ffff shell> mkdir 111 shell> mkdir 222 shell> mkdir 333 分别再在111,222,333 文件夹下创建一些文件,然后给予权限。 shell>chown www.www test -R

然后运行del_files.php,检测递归删除目录的效果。

>>> 您可能感兴趣的文章: php 删除记录同时删除图片文件的代码 php删除上传的图片与文件夹(实例分享) PHP上传图片、删除图片的简单示例代码 PHP删除N分钟前创建的所有文件的小例子 php删除目录及所有文件的方法举例 php ftp类(复制、移动、删除文件、创建目录等) php删除记录同时刷新当前页面的实现代码 删除指定文件夹中所有文件的php代码 php上传与删除图片的简单范例 php写的一个删除目录的函数 php递归创建和删除文件夹的代码 php递归删除目录及文件的自定义函数rrmdir



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