ตัวอย่างเช่นฉันมีโฟลเดอร์ชื่อ 'ชั่วคราว' และฉันต้องการลบหรือล้างไฟล์ทั้งหมดจากโฟลเดอร์นี้โดยใช้ PHP ฉันจะทำสิ่งนี้ได้ไหม
ตัวอย่างเช่นฉันมีโฟลเดอร์ชื่อ 'ชั่วคราว' และฉันต้องการลบหรือล้างไฟล์ทั้งหมดจากโฟลเดอร์นี้โดยใช้ PHP ฉันจะทำสิ่งนี้ได้ไหม
คำตอบ:
$files = glob('path/to/temp/*'); // get all file names
foreach($files as $file){ // iterate files
if(is_file($file))
unlink($file); // delete file
}
หากคุณต้องการลบไฟล์ 'hidden' เช่น. htaccess คุณต้องใช้
$files = glob('path/to/temp/{,.}*', GLOB_BRACE);
หากคุณต้องการที่จะลบทุกอย่างจากโฟลเดอร์ (รวมถึงโฟลเดอร์ย่อย) ใช้ร่วมกันนี้array_map
, unlink
และglob
:
array_map( 'unlink', array_filter((array) glob("path/to/temp/*") ) );
การโทรนี้สามารถจัดการไดเรกทอรีว่างได้ (ขอบคุณสำหรับเคล็ดลับ @mojuba!)
glob("...") ?: []
(PHP 5.4+) เพราะ directory ว่างผลตอบแทนglob()
false
array_map('unlink', ( glob( "path/to/temp/*" ) ? glob( "path/to/temp/*" ) : array() ) );
นี่คือวิธีการที่ทันสมัยเพิ่มขึ้นโดยใช้มาตรฐาน 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;
foreach (new DirectoryIterator('/path/to/directory') as $fileInfo) {
if(!$fileInfo->isDot()) {
unlink($fileInfo->getPathname());
}
}
รหัสนี้จาก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);
}
?>
สมมติว่าคุณมีโฟลเดอร์ที่มีไฟล์จำนวนมากที่อ่านไฟล์เหล่านั้นทั้งหมดแล้วการลบในสองขั้นตอนจะไม่เป็นการดำเนินการ ฉันเชื่อว่าวิธีที่มีประสิทธิภาพที่สุดในการลบไฟล์คือเพียงแค่ใช้คำสั่งระบบ
เช่นใน linux ฉันใช้:
exec('rm -f '. $absolutePathToFolder .'*');
หรือสิ่งนี้หากคุณต้องการลบแบบเรียกซ้ำโดยไม่จำเป็นต้องเขียนฟังก์ชันแบบเรียกซ้ำ
exec('rm -f -r '. $absolutePathToFolder .'*');
มีคำสั่งที่แน่นอนเหมือนกันสำหรับทุกระบบปฏิบัติการที่สนับสนุนโดย PHP โปรดทราบว่านี่เป็นวิธีการลบไฟล์ที่มีประสิทธิภาพ $ absolutePathToFolder จะต้องตรวจสอบและรักษาความปลอดภัยก่อนที่จะเรียกใช้รหัสนี้และต้องได้รับอนุญาต
$absolutePatToFolder
ว่างเปล่า
วิธีที่ง่ายและดีที่สุดในการลบไฟล์ทั้งหมดออกจากโฟลเดอร์ใน 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/
โซลูชันอื่น: คลาสนี้ลบไฟล์ไดเรกทอรีย่อยและไฟล์ทั้งหมดในไดเรกทอรีย่อย
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."/*"));
}
}
}
ฟังก์ชัน unlinkr ลบโฟลเดอร์และไฟล์ซ้ำทั้งหมดในเส้นทางที่กำหนดโดยตรวจสอบให้แน่ใจว่าไม่ได้ลบสคริปต์เอง
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");
คุณสามารถใช้พา ธ อื่นเพื่อลบไฟล์ได้เช่นกัน
unlinkr("/home/user/temp");
จะเป็นการลบไฟล์ทั้งหมดในไดเรกทอรี home / user / temp
โพสต์ไฟล์วัตถุประสงค์ทั่วไปและคลาสการจัดการโฟลเดอร์สำหรับการคัดลอกย้ายลบคำนวณขนาด ฯลฯ ที่สามารถจัดการไฟล์เดียวหรือชุดโฟลเดอร์
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');
ลบไฟล์เดียวหรือไฟล์และโฟลเดอร์ทั้งหมดในพา ธ :
$files = new Files();
$results = $files->delete('source/folder/optional-file.name');
คำนวณขนาดของไฟล์เดียวหรือชุดของไฟล์ในชุดโฟลเดอร์:
$files = new Files();
$results = $files->calculateSize('source/folder/optional-file.name');
<?
//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
?>
สำหรับฉันการแก้ปัญหาด้วยreaddir
ดีที่สุดและทำงานเหมือนมีเสน่ห์ ด้วยglob
ฟังก์ชันนี้ล้มเหลวในบางสถานการณ์
// Remove a directory recursively
function removeDirectory($dirPath) {
if (! is_dir($dirPath)) {
return false;
}
if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
$dirPath .= '/';
}
if ($handle = opendir($dirPath)) {
while (false !== ($sub = readdir($handle))) {
if ($sub != "." && $sub != ".." && $sub != "Thumb.db") {
$file = $dirPath . $sub;
if (is_dir($file)) {
removeDirectory($file);
} else {
unlink($file);
}
}
}
closedir($handle);
}
rmdir($dirPath);
}
ฉันอัปเดตคำตอบของ @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));
}
public static function recursiveDelete($dir)
{
foreach (new \DirectoryIterator($dir) as $fileInfo) {
if (!$fileInfo->isDot()) {
if ($fileInfo->isDir()) {
recursiveDelete($fileInfo->getPathname());
} else {
unlink($fileInfo->getPathname());
}
}
}
rmdir($dir);
}
มีแพ็คเกจชื่อ "Pusheh" ใช้มันคุณสามารถล้างไดเรกทอรีหรือลบไดเรกทอรีทั้งหมด ( ลิงค์ Github ) มันมีอยู่ในPackagistเช่นกัน
ตัวอย่างเช่นหากคุณต้องการล้างTemp
ไดเรกทอรีคุณสามารถทำได้:
Pusheh::clearDir("Temp");
// Or you can remove the directory completely
Pusheh::removeDirRecursively("Temp");