使用PHP删除文件夹中的所有文件?
例如,我有一个名为“Temp”的文件夹,我想用PHP删除或刷新此文件夹中的所有文件。 我可以这样做吗?
$files = glob('path/to/temp/*'); // get all file names foreach($files as $file){ // iterate files if(is_file($file)) unlink($file); // delete file }
如果你想删除像.htaccess这样的“隐藏”文件,你必须使用
$files = glob('path/to/temp/{,.}*', GLOB_BRACE);
如果要从文件夹(包括子文件夹)中删除所有内容,请使用array_map
, unlink
和glob
组合:
array_map('unlink', glob("path/to/temp/*"));
foreach (new DirectoryIterator('/path/to/directory') as $fileInfo) { if(!$fileInfo->isDot()) { unlink($fileInfo->getPathname()); } }
这是使用标准PHP库(SPL)的更现代的方法。
$dir = "path/to/directory"; $di = new RecursiveDirectoryIterator($dir, FilesystemIterator::SKIP_DOTS); $ri = new RecursiveIteratorIterator($di, RecursiveIteratorIterator::CHILD_FIRST); foreach ( $ri as $file ) { $file->isDir() ? rmdir($file) : unlink($file); } return true;
这个代码来自http://php.net/unlink :
/** * Delete a file or recursively delete a directory * * @param string $str Path to file or directory */ function recursiveDelete($str) { if (is_file($str)) { return @unlink($str); } elseif (is_dir($str)) { $scan = glob(rtrim($str,'/').'/*'); foreach($scan as $index=>$path) { recursiveDelete($path); } return @rmdir($str); } }
$dir = 'your/directory/'; foreach(glob($dir.'*.*') as $v){ unlink($v); }
请参阅readdir并取消链接 。
<?php if ($handle = opendir('/path/to/files')) { echo "Directory handle: $handle\n"; echo "Files:\n"; while (false !== ($file = readdir($handle))) { if( is_file($file) ) { unlink($file); } } closedir($handle); } ?>
从PHP中的文件夹中删除所有文件的简单和最好的方法
$files = glob('my_folder/*'); //get all file names foreach($files as $file){ if(is_file($file)) unlink($file); //delete file }
从这里得到这个源代码 – http://www.codexworld.com/delete-all-files-from-folder-using-php/
假设你有一个文件夹,有大量的文件读取它们,然后在两个步骤中删除是不是表演。 我相信删除文件的最佳方式就是使用系统命令。
例如在Linux上我使用:
exec('rm -f '. $absolutePathToFolder .'*');
或者,如果你想recursion删除,而不需要写recursion函数
exec('rm -f -r '. $absolutePathToFolder .'*');
PHP支持的任何操作系统都有相同的确切命令。 请记住,这是删除文件的一种执行方式。 $ absolutePathToFolder必须在运行此代码之前进行检查和保护,并且必须授予权限。
另一种解决scheme:这个类删除子目录中的所有文件,子目录和文件。
class Your_Class_Name { /** * @see http://php.net/manual/de/function.array-map.php * @see http://www.php.net/manual/en/function.rmdir.php * @see http://www.php.net/manual/en/function.glob.php * @see http://php.net/manual/de/function.unlink.php * @param string $path */ public function delete($path) { if (is_dir($path)) { array_map(function($value) { $this->delete($value); rmdir($value); },glob($path . '/*', GLOB_ONLYDIR)); array_map('unlink', glob($path."/*")); } } }
发布一个通用的文件和文件夹处理类的复制,移动,删除,计算大小等,可以处理单个文件或一组文件夹。
https://gist.github.com/4689551
使用:
复制(或移动)单个文件或一组文件夹/文件:
$files = new Files(); $results = $files->copyOrMove('source/folder/optional-file', 'target/path', 'target-file-name-for-single-file.only', 'copy');
删除path中的单个文件或所有文件和文件夹:
$files = new Files(); $results = $files->delete('source/folder/optional-file.name');
计算一组文件或一组文件中一组文件的大小:
$files = new Files(); $results = $files->calculateSize('source/folder/optional-file.name');
unlinkr函数recursion地删除给定path中的所有文件夹和文件,确保它不会删除脚本本身。
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('..', '.'))) { echo "<p>opening directory $file </p>"; unlinkr($file, $pattern); //remove the directory itself echo "<p> deleting directory $file </p>"; rmdir($file); } else if(is_file($file) and ($file != __FILE__)) { // make sure you don't delete the current script echo "<p>deleting file $file </p>"; unlink($file); } } }
如果要删除放置此脚本的所有文件和文件夹,请按以下方式调用它
//get current working directory $dir = getcwd(); unlinkr($dir);
如果你想删除只是PHP文件,然后调用它如下
unlinkr($dir, "*.php");
您也可以使用其他path来删除文件
unlinkr("/home/user/temp");
这将删除home / user / temp目录中的所有文件。
我更新了@Stichoza的答案,通过子文件夹删除文件。
function glob_recursive($pattern, $flags = 0) { $fileList = glob($pattern, $flags); foreach (glob(dirname($pattern).'/*', GLOB_ONLYDIR|GLOB_NOSORT) as $dir) { $subPattern = $dir.'/'.basename($pattern); $subFileList = glob_recursive($subPattern, $flags); $fileList = array_merge($fileList, $subFileList); } return $fileList; } function glob_recursive_unlink($pattern, $flags = 0) { array_map('unlink', glob_recursive($pattern, $flags)); }
<? //delete all files from folder & sub folders function listFolderFiles($dir) { $ffs = scandir($dir); echo '<ol>'; foreach ($ffs as $ff) { if ($ff != '.' && $ff != '..') { if (file_exists("$dir/$ff")) { unlink("$dir/$ff"); } echo '<li>' . $ff; if (is_dir($dir . '/' . $ff)) { listFolderFiles($dir . '/' . $ff); } echo '</li>'; } } echo '</ol>'; } $arr = array( "folder1", "folder2" ); for ($x = 0; $x < count($arr); $x++) { $mm = $arr[$x]; listFolderFiles($mm); } //end ?>