search
Homephp教程php手册php创建和删除目录函数介绍和递归删除目录函数分享

这篇文章主要介绍了php创建和删除目录函数介绍和递归删除目录函数分享,本文重点是对递归删除目录的自定义函数分享,需要的朋友可以参考下

mkdir() — 新建目录

复制代码 代码如下:


– 语法:bool mkdir (string pathname [,int mode])
– 尝试新建一个由 pathname 指定的目录。


rmdir() — 删除目录

复制代码 代码如下:


– 语法:bool rmdir ( string dirname )
– 尝试删除 dirname 所指定的目录。 该目录必须是空的,而且要有相应的权限。如果成功则返回 TRUE,失败则返回
FALSE。


unlink — 删除文件

复制代码 代码如下:


– 语法:bool unlink ( string filename )
– 删除 filename。和 Unix C 的 unlink() 函数相似。如果成功则返回 TRUE,失败则返回 FALSE。

在PHP中,使用mkdir()函数只需要传入一个目录名即可很容易地建立一个新目录。但删除目录所使用的函数rmdir(),只能删除一个空目录并且目录必须存在。如果是非空的目录就需要先进入到目录中,使用unlink()函数将目录中的每个文件都删除掉,再回来将这个空目录删除。如果目录中还存在目录,而且子目录也非空,,就要使用递归的方法了。自定义递归函数删除目录的程序代码如下所示:

复制代码 代码如下:


//自定义函数递归的删除整个目录
function delDir($directory){
    if(file_exists($directory)){      //如果不存在rmdir()函数会出错
        if($dir_handle = @opendir($directory)){       //打开目录,并判断是否能成功打开
            while($filename = readdir($dir_handle)){       //循环遍历目录下的所有文件
               if($filename != "."&& $filename != ".."){       //一定要排除两个特殊的目录
                   $subFile = $directory."/".$filename;       //将目录下的子文件和当前目录相连
                   if(is_dir($subFile))        //如果为目录则条件成立
                   delDir($subFile);       //递归地调用自身函数,删除子目录
                   if(is_file($subFile))      //如果是文件则条件成立
                   unlink($subFile);           //直接删除这个文件
               }
            }
            closedir($dir_handle); //关闭文件资源
            rmdir($directory); //删除空目录
         }
      }
}
 
dirDir("phpMyAdmin"); //调用delDir()函数,将程序所在目录中的“phpMyAdmin”文件删除
?>

当然也可以通过调用操作系统命令“rm-rf”删除非空的目录,但也要从安全和跨平台方面考虑尽量不要去使用。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor