我有一种方法可以使用RegExp或通配符搜索来快速删除文件夹中的所有文件,然后在PHP中删除该文件夹,不使用“exec”命令?我的服务器没有授权我使用该命令。某种简单的循环就足够了。
我需要一些可以完成以下陈述背后的逻辑的东西,但显然是有效的:
$dir = "/home/dir"
unlink($dir . "/*"); # "*" being a match for all strings
rmdir($dir);
答案 0 :(得分:76)
使用glob
查找与模式匹配的所有文件。
function recursiveRemoveDirectory($directory)
{
foreach(glob("{$directory}/*") as $file)
{
if(is_dir($file)) {
recursiveRemoveDirectory($file);
} else {
unlink($file);
}
}
rmdir($directory);
}
答案 1 :(得分:16)
使用glob()
轻松遍历目录以删除文件,然后删除目录。
foreach (glob($dir."/*.*") as $filename) {
if (is_file($filename)) {
unlink($filename);
}
}
rmdir($dir);
答案 2 :(得分:9)
glob()
功能可以满足您的需求。如果您使用的是PHP 5.3+,则可以执行以下操作:
$dir = ...
array_walk(glob($dir . '/*'), function ($fn) {
if (is_file($fn))
unlink($fn);
});
unlink($dir);
答案 3 :(得分:6)
尝试简单方法:
$dir = "/home/dir";
array_map('unlink', glob($dir."/*"));
rmdir($dir);
在功能中删除目录:
function unlinkr($dir, $pattern = "*") {
// find all files and folders matching pattern
$files = glob($dir . "/$pattern");
//interate thorugh the files and folders
foreach($files as $file){
//if it is a directory then re-call unlinkr function to delete files inside this directory
if (is_dir($file) and !in_array($file, array('..', '.'))) {
unlinkr($file, $pattern);
//remove the directory itself
rmdir($file);
} else if(is_file($file) and ($file != __FILE__)) {
// make sure you don't delete the current script
unlink($file);
}
}
rmdir($dir);
}
//call following way:
unlinkr("/home/dir");
答案 4 :(得分:4)
你可以使用Symfony Filesystem component,以避免重新发明轮子,所以你可以做到
use Symfony\Component\Filesystem\Filesystem;
$filesystem = new Filesystem();
if ($filesystem->exists('/home/dir')) {
$filesystem->remove('/home/dir');
}
如果您更喜欢自己管理代码,请参阅相关方法的Symfony代码库
class MyFilesystem
{
private function toIterator($files)
{
if (!$files instanceof \Traversable) {
$files = new \ArrayObject(is_array($files) ? $files : array($files));
}
return $files;
}
public function remove($files)
{
$files = iterator_to_array($this->toIterator($files));
$files = array_reverse($files);
foreach ($files as $file) {
if (!file_exists($file) && !is_link($file)) {
continue;
}
if (is_dir($file) && !is_link($file)) {
$this->remove(new \FilesystemIterator($file));
if (true !== @rmdir($file)) {
throw new \Exception(sprintf('Failed to remove directory "%s".', $file), 0, null, $file);
}
} else {
// https://bugs.php.net/bug.php?id=52176
if ('\\' === DIRECTORY_SEPARATOR && is_dir($file)) {
if (true !== @rmdir($file)) {
throw new \Exception(sprintf('Failed to remove file "%s".', $file), 0, null, $file);
}
} else {
if (true !== @unlink($file)) {
throw new \Exception(sprintf('Failed to remove file "%s".', $file), 0, null, $file);
}
}
}
}
}
public function exists($files)
{
foreach ($this->toIterator($files) as $file) {
if (!file_exists($file)) {
return false;
}
}
return true;
}
}
答案 5 :(得分:4)
使用Standard PHP Library递归删除所有文件和文件夹的简单有效方法,具体而言,RecursiveIteratorIterator和RecursiveDirectoryIterator。这一点在RecursiveIteratorIterator::CHILD_FIRST
标志中,迭代器将首先遍历文件,最后是目录,因此一旦目录为空,就可以安全地使用rmdir()
。
foreach( new RecursiveIteratorIterator(
new RecursiveDirectoryIterator( 'folder', FilesystemIterator::SKIP_DOTS | FilesystemIterator::UNIX_PATHS ),
RecursiveIteratorIterator::CHILD_FIRST ) as $value ) {
$value->isFile() ? unlink( $value ) : rmdir( $value );
}
rmdir( 'folder' );
答案 6 :(得分:1)
这样做的一种方法是:
function unlinker($file)
{
unlink($file);
}
$files = glob('*.*');
array_walk($files,'unlinker');
rmdir($dir);
答案 7 :(得分:0)
删除所有文件,你可以删除目录并再次使用简单的代码行
<?php
$dir = '/home/files/';
rmdir($dir);
mkdir($dir);
?>