Heim  >  Artikel  >  Backend-Entwicklung  >  如何正确使用php递归函数删除非空目录及子目录?

如何正确使用php递归函数删除非空目录及子目录?

WBOY
WBOYOriginal
2016-07-25 08:51:25846Durchsuche
使用php递归函数正确删除非空目录的方法,php目录与文件的删除方法,当遇到非空目录时,考虑用php递归实现目录遍历与删除,是个不错的选择。

php递归函数

递归删除目录的思路

1、php递归遍历目录及子目录 2、使用 scandir 判断目录是否为空,为空则使用rmdir 删除。

例子,php递归函数 删除所有空目录:

复制代码 代码示例:

使用 shell 则简单很多:

find 目标文件夹 -mindepth 1 -depth -empty -type d -exec rm -r {} \;

二、php删除空目录的方法(非php递归函数方法)

php实现删除空目录的方法,rmdir函数的使用技巧

php通过rmdir()函数删除一个空目录

例子:

复制代码 代码示例:

第一次执行会返回: Directory removed.

第二次执行,由于目录已经被删除,会返回: Directory does not exist.



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
Vorheriger Artikel:打开PHP的错误报告的方法 Nächster Artikel:php数组键值小例子