ลบไฟล์ทั้งหมดจากโฟลเดอร์โดยใช้ PHP หรือไม่


306

ตัวอย่างเช่นฉันมีโฟลเดอร์ชื่อ 'ชั่วคราว' และฉันต้องการลบหรือล้างไฟล์ทั้งหมดจากโฟลเดอร์นี้โดยใช้ PHP ฉันจะทำสิ่งนี้ได้ไหม


14
เป็นสิ่งที่ดีที่คำถามนี้ถูกตอบลงด้านล่างก่อนที่จะถูกทำเครื่องหมายว่าซ้ำกัน คำตอบด้านล่างนั้นดีกว่าคำถามที่ตอบแล้ว บวกกับคำถามที่แตกต่างคำถามนี้ขอให้ล้างไดเรกทอรีไม่ลบ
Bart Burg

1
ใช่นี่เป็นคำถามที่แตกต่างที่ดึงคำตอบที่ต่างออกไป ไม่ควรทำเครื่องหมายว่าซ้ำ
Daniel Bingham

คำตอบ:


639
$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);

4
นอกจากนี้ยังมี DirectoryIterator หรือ DirectoryRecursiveIterator
Eugene

6
แม้ว่าจะชัดเจน แต่ฉันขอพูดถึงตัวอย่างเช่น 'path / to / temp / *. txt' จะลบเฉพาะไฟล์ txt และอื่น ๆ
Tertium

สิ่งนี้ใช้ได้กับเส้นทางสัมพัทธ์ด้วยหรือไม่ ดังนั้นสมมติว่าเส้นทางแบบเต็มคือ "/ var / www / html / folder_and_files_to_delete /" และสคริปต์ลบจะอยู่ใน "/var/www/html/delete_folders_and_files.php" ฉันสามารถใช้ "folder_and_files_to_delete" เป็นเส้นทางได้ไหม
yoano

1
@yoano ใช่แน่นอนตราบใดที่เส้นทางสัมพัทธ์นั้นถูกต้อง
Floern

glob ตกลงที่จะใช้ถ้าไดเรกทอรีมีหลายหมื่นหรือหลายแสนไฟล์ในนั้น?
Dave Heq

260

หากคุณต้องการที่จะลบทุกอย่างจากโฟลเดอร์ (รวมถึงโฟลเดอร์ย่อย) ใช้ร่วมกันนี้array_map, unlinkและglob:

array_map( 'unlink', array_filter((array) glob("path/to/temp/*") ) );

การโทรนี้สามารถจัดการไดเรกทอรีว่างได้ (ขอบคุณสำหรับเคล็ดลับ @mojuba!)


33
คำตอบที่ดีที่สุดขอบคุณ หลีกเลี่ยงการแจ้งฉันยังต้องการทำglob("...") ?: [](PHP 5.4+) เพราะ directory ว่างผลตอบแทนglob() false
mojuba

14
มันจะลบไฟล์ทั้งหมดในโฟลเดอร์ปัจจุบัน แต่จะส่งคืนคำเตือนสำหรับโฟลเดอร์ย่อยและจะไม่ลบออก
Key-Six

2
รวมคำตอบของ Stichoza และ mojuba:array_map('unlink', ( glob( "path/to/temp/*" ) ? glob( "path/to/temp/*" ) : array() ) );
Ewout

7
@Ewout: แม้ว่าเราจะรวมคำตอบของ Stichoza และ Moujuba ในขณะที่การที่คุณให้ผลตอบแทนคำเตือนเดียวกันสำหรับโฟลเดอร์ย่อยและมันไม่ได้ลบพวกเขา
Sulthan Allaudeen

3
น่าเสียดายที่นี่ไม่ได้ลบโฟลเดอร์ย่อย
tmarois

92

นี่คือวิธีการที่ทันสมัยเพิ่มขึ้นโดยใช้มาตรฐาน 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;

1
มันใช้งานได้ดีเมื่อคุณไม่มีการเข้าถึง SSH และ FTP ใช้เวลาหลายชั่วโมงในการเรียกคืนไฟล์และโฟลเดอร์จำนวนมากซ้ำ ... ด้วยบรรทัดเหล่านั้นฉันลบไฟล์ 35,000 ไฟล์ในเวลาน้อยกว่า 3 วินาที!
guari

สำหรับผู้ใช้ PHP 7.1: $ file-> getRealPath () ต้องใช้แทน $ file มิฉะนั้น PHP จะให้ข้อผิดพลาดแก่คุณว่าการยกเลิกการเชื่อมโยงต้องใช้เส้นทางไม่ใช่ตัวอย่างของ SplFileInfo
KeineMaster

68
foreach (new DirectoryIterator('/path/to/directory') as $fileInfo) {
    if(!$fileInfo->isDot()) {
        unlink($fileInfo->getPathname());
    }
}

ควรยกเลิกการเชื่อมโยง ('/ path / to / directory /'.$ fileInfo-> getFilename ()); เนื่องจากการยกเลิกการเชื่อมโยงเกิดขึ้นในเส้นทาง คำตอบที่ดีแม้ว่า
Vic

8
คุณสามารถยกเลิกการเชื่อมโยง ($ fileInfo-> getPathname ()); ซึ่งจะให้เส้นทางแบบเต็มไปยังไฟล์ php.net/manual/en/directoryiterator.getpathname.php
Josh Holloway

'DirectoryIterator' ไม่ซ้ำกับไดเรกทอรีย่อยหรือไม่ หากเป็นเช่นนั้น 'ยกเลิกการเชื่อมโยง' จะสร้างคำเตือนในกรณีเช่นนี้ ไม่ควรดูเนื้อหาของลูปในคำตอบของ Yamiko แทนและตรวจสอบแต่ละรายการว่าเป็นไฟล์ก่อนเรียก 'unlink' หรือไม่
Andreas Linnert

19

รหัสนี้จาก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);
    }
}


11

ดู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);
    }
?>

10

สมมติว่าคุณมีโฟลเดอร์ที่มีไฟล์จำนวนมากที่อ่านไฟล์เหล่านั้นทั้งหมดแล้วการลบในสองขั้นตอนจะไม่เป็นการดำเนินการ ฉันเชื่อว่าวิธีที่มีประสิทธิภาพที่สุดในการลบไฟล์คือเพียงแค่ใช้คำสั่งระบบ

เช่นใน linux ฉันใช้:

exec('rm -f '. $absolutePathToFolder .'*');

หรือสิ่งนี้หากคุณต้องการลบแบบเรียกซ้ำโดยไม่จำเป็นต้องเขียนฟังก์ชันแบบเรียกซ้ำ

exec('rm -f -r '. $absolutePathToFolder .'*');

มีคำสั่งที่แน่นอนเหมือนกันสำหรับทุกระบบปฏิบัติการที่สนับสนุนโดย PHP โปรดทราบว่านี่เป็นวิธีการลบไฟล์ที่มีประสิทธิภาพ $ absolutePathToFolder จะต้องตรวจสอบและรักษาความปลอดภัยก่อนที่จะเรียกใช้รหัสนี้และต้องได้รับอนุญาต


2
บิตไม่ปลอดภัยโดยใช้วิธีนี้ถ้า$absolutePatToFolderว่างเปล่า
Lawrence Cherone

@LawrenceCherone ทางเลือกอื่นปลอดภัยกว่าหรือไม่
robsch

3
@ LawrenceCherone ฉันหวังว่าไม่มีใครรัน php ด้วยสิทธิ์ root ในปัจจุบัน จริงจังฉันคาดหวังว่าอินพุตจะ "ปลอดภัย" เนื่องจากฟังก์ชันทั้งหมดข้างต้น
Dario Corno

โซลูชันที่ได้รับการโหวตมากที่สุดจะไม่ทำงานในสภาพแวดล้อม dev ซึ่ง www หรือ www-data ไม่ใช่เจ้าของ มันขึ้นอยู่กับผู้ดูแลเซิร์ฟเวอร์เพื่อให้แน่ใจว่ามีการตั้งค่าสิทธิ์ที่เหมาะสมของโฟลเดอร์ exec เป็นเครื่องมือที่ทรงคุณค่าสำหรับการทำสิ่งต่างๆให้สำเร็จและด้วยพลังอันยิ่งใหญ่ ฯลฯstackoverflow.com/a/2765171/418974
Christian Bonato

@ LawrenceCherone คุณถูกต้องทั้งหมดคำตอบของฉันมีความหมายสำหรับสถานการณ์ที่เฉพาะเจาะจงมากเพียงเพื่อเหตุผลด้านประสิทธิภาพ แก้ไขคำตอบของฉันตามบันทึกของคุณ
Dario Corno


4

โซลูชันอื่น: คลาสนี้ลบไฟล์ไดเรกทอรีย่อยและไฟล์ทั้งหมดในไดเรกทอรีย่อย

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."/*"));
        }
    }
}

4

ฟังก์ชัน 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


3

โพสต์ไฟล์วัตถุประสงค์ทั่วไปและคลาสการจัดการโฟลเดอร์สำหรับการคัดลอกย้ายลบคำนวณขนาด ฯลฯ ที่สามารถจัดการไฟล์เดียวหรือชุดโฟลเดอร์

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');

1
 <?
//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
?> 

1

สำหรับฉันการแก้ปัญหาด้วย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);
}

0

ฉันอัปเดตคำตอบของ @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));
}

0
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);
}

0

มีแพ็คเกจชื่อ "Pusheh" ใช้มันคุณสามารถล้างไดเรกทอรีหรือลบไดเรกทอรีทั้งหมด ( ลิงค์ Github ) มันมีอยู่ในPackagistเช่นกัน

ตัวอย่างเช่นหากคุณต้องการล้างTempไดเรกทอรีคุณสามารถทำได้:

Pusheh::clearDir("Temp");

// Or you can remove the directory completely
Pusheh::removeDirRecursively("Temp");

หากคุณสนใจโปรดดูที่วิกิพีเดีย

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.