PHP รับไดเรกทอรีย่อยทั้งหมดของไดเรกทอรีที่กำหนด


139

ฉันจะรับไดเรกทอรีย่อยทั้งหมดของไดเรกทอรีที่กำหนดโดยไม่มีไฟล์.(ไดเรกทอรีปัจจุบัน) หรือ..(ไดเรกทอรีหลัก) จากนั้นใช้แต่ละไดเรกทอรีในฟังก์ชันได้อย่างไร

คำตอบ:


210

คุณสามารถใช้glob ()พร้อมGLOB_ONLYDIRตัวเลือก

หรือ

$dirs = array_filter(glob('*'), 'is_dir');
print_r( $dirs);

ที่ให้ไดเรกทอรีย่อยเช่นกัน?
Gordon

2
คุณต้องทำการพักฟื้นที่นี่
Josef Sábl

ขออภัยตัวเลือก GLOB_ONLYDIR อยู่ที่นี่ที่ไหน?
developerbmw

5
@developerbmw หมายเหตุคำหรือ เขานำเสนอสองวิธีที่แตกต่างในการบรรลุเป้าหมาย
Ken Wayne VanderLinde

7
ในขณะที่วิธีการที่ดีและเรียบง่ายคำตอบที่ยอมรับไม่ได้ตอบคำถาม: รับไดเรกทอรีย่อยจากไดเรกทอรีแม่ (aka พี่น้องของไดเรกทอรีการทำงานปัจจุบัน) หากต้องการทำเช่นนั้นจำเป็นต้องเปลี่ยนไดเรกทอรีทำงานเป็นไดเรกทอรีหลัก
ryanm

156

นี่คือวิธีที่คุณสามารถดึงข้อมูลเฉพาะไดเรกทอรีด้วย GLOB:

$directories = glob($somePath . '/*' , GLOB_ONLYDIR);

2
ซึ่งรวมถึงไดเรกทอรีหลัก
4951

3
นี่ไม่รวมไดเรกทอรีหลักในกรณีของฉัน (Windows)
marcovtwout

1
นี่ไม่รวมไดเรกทอรีหลักสำหรับฉันใน mac linux เช่นกัน บางทีมันอาจจะเกี่ยวกับเส้นทางที่ใช้?
Jake

1
ซึ่งรวมถึงเส้นทาง$somePathในผลลัพธ์
The Godfather

47

คลาสSpl DirectoryIteratorจัดเตรียมอินเตอร์เฟสอย่างง่ายสำหรับการดูเนื้อหาของไดเร็กทอรีระบบไฟล์

$dir = new DirectoryIterator($path);
foreach ($dir as $fileinfo) {
    if ($fileinfo->isDir() && !$fileinfo->isDot()) {
        echo $fileinfo->getFilename().'<br>';
    }
}

27

เกือบเหมือนคำถามก่อนหน้าของคุณ:

$iterator = new RecursiveIteratorIterator(
                new RecursiveDirectoryIterator($yourStartingPath), 
            RecursiveIteratorIterator::SELF_FIRST);

foreach($iterator as $file) {
    if($file->isDir()) {
        echo strtoupper($file->getRealpath()), PHP_EOL;
    }
}

แทนที่strtoupperด้วยฟังก์ชั่นที่คุณต้องการ


1
ขอบคุณมาก! อีกหนึ่งคำถาม: ฉันจะแยกเฉพาะชื่อ sub-dir จากเส้นทางทั้งหมดได้อย่างไร
Adrian M.

@Adrian โปรดดูเอกสาร API ที่ฉันให้ไว้ในคำถามอื่นของคุณ getFilename()จะส่งคืนเฉพาะชื่อไดเรกทอรี
Gordon

1
ในการกำจัดจุดฉันต้องเพิ่มRecursiveDirectoryIterator::SKIP_DOTSเป็นอาร์กิวเมนต์ตัวที่สองของตัวRecursiveDirectoryIteratorสร้าง
colan

5

ลองรหัสนี้:

<?php
$path = '/var/www/html/project/somefolder';

$dirs = array();

// directory handle
$dir = dir($path);

while (false !== ($entry = $dir->read())) {
    if ($entry != '.' && $entry != '..') {
       if (is_dir($path . '/' .$entry)) {
            $dirs[] = $entry; 
       }
    }
}

echo "<pre>"; print_r($dirs); exit;

4

ในอาร์เรย์:

function expandDirectoriesMatrix($base_dir, $level = 0) {
    $directories = array();
    foreach(scandir($base_dir) as $file) {
        if($file == '.' || $file == '..') continue;
        $dir = $base_dir.DIRECTORY_SEPARATOR.$file;
        if(is_dir($dir)) {
            $directories[]= array(
                    'level' => $level
                    'name' => $file,
                    'path' => $dir,
                    'children' => expandDirectoriesMatrix($dir, $level +1)
            );
        }
    }
    return $directories;
}

//เข้าไป:

$dir = '/var/www/';
$directories = expandDirectoriesMatrix($dir);

echo $directories[0]['level']                // 0
echo $directories[0]['name']                 // pathA
echo $directories[0]['path']                 // /var/www/pathA
echo $directories[0]['children'][0]['name']  // subPathA1
echo $directories[0]['children'][0]['level'] // 1
echo $directories[0]['children'][1]['name']  // subPathA2
echo $directories[0]['children'][1]['level'] // 1

ตัวอย่างที่จะแสดงทั้งหมด:

function showDirectories($list, $parent = array())
{
    foreach ($list as $directory){
        $parent_name = count($parent) ? " parent: ({$parent['name']}" : '';
        $prefix = str_repeat('-', $directory['level']);
        echo "$prefix {$directory['name']} $parent_name <br/>";  // <-----------
        if(count($directory['children'])){
            // list the children directories
            showDirectories($directory['children'], $directory);
        }
    }
}

showDirectories($directories);

// pathA
// - subPathA1 (parent: pathA)
// -- subsubPathA11 (parent: subPathA1)
// - subPathA2 
// pathB
// pathC

2
<?php
    /*this will do what you asked for, it only returns the subdirectory names in a given
      path, and you can make hyperlinks and use them:
    */

    $yourStartingPath = "photos\\";
    $iterator = new RecursiveIteratorIterator( 
        new RecursiveDirectoryIterator($yourStartingPath),  
        RecursiveIteratorIterator::SELF_FIRST);

    foreach($iterator as $file) { 
        if($file->isDir()) { 
            $path = strtoupper($file->getRealpath()) ; 
            $path2 = PHP_EOL;
            $path3 = $path.$path2;

            $result = end(explode('/', $path3)); 

            echo "<br />". basename($result );
        } 
    } 

    /* best regards,
        Sanaan Barzinji
        Erbil
    */
?>

2

คุณสามารถลองใช้ฟังก์ชันนี้ (ต้องการ PHP 7)

function getDirectories(string $path) : array
{
    $directories = [];
    $items = scandir($path);
    foreach ($items as $item) {
        if($item == '..' || $item == '.')
            continue;
        if(is_dir($path.'/'.$item))
            $directories[] = $item;
    }
    return $directories;
}

1

วิธีการที่เหมาะสม

/**
 * Get all of the directories within a given directory.
 *
 * @param  string  $directory
 * @return array
 */
function directories($directory)
{
    $glob = glob($directory . '/*');

    if($glob === false)
    {
        return array();
    }

    return array_filter($glob, function($dir) {
        return is_dir($dir);
    });
}

แรงบันดาลใจจาก Laravel


1
ดูเหมือนจะเกินความจริงเมื่อมีธงGLOB_ONLYDIRให้ดูphp.net/manual/en/function.glob.php
Robert Pounder


0

รายการที่ไม่ซ้ำแบบเรียกซ้ำ

คำถามเดียวที่ถามโดยตรงนี้ถูกปิดอย่างผิดพลาดดังนั้นฉันต้องวางไว้ที่นี่

นอกจากนี้ยังให้ความสามารถในการกรองไดเรกทอรี

/**
 * Copyright © 2020 Theodore R. Smith <https://www.phpexperts.pro/>
 * License: MIT
 *
 * @see https://stackoverflow.com/a/61168906/430062
 *
 * @param string $path
 * @param bool   $recursive Default: false
 * @param array  $filtered  Default: [., ..]
 * @return array
 */
function getDirs($path, $recursive = false, array $filtered = [])
{
    if (!is_dir($path)) {
        throw new RuntimeException("$path does not exist.");
    }

    $filtered += ['.', '..'];

    $dirs = [];
    $d = dir($path);
    while (($entry = $d->read()) !== false) {
        if (is_dir("$path/$entry") && !in_array($entry, $filtered)) {
            $dirs[] = $entry;

            if ($recursive) {
                $newDirs = getDirs("$path/$entry");
                foreach ($newDirs as $newDir) {
                    $dirs[] = "$entry/$newDir";
                }
            }
        }
    }

    return $dirs;
}


-1

ค้นหาไฟล์ PHP ทั้งหมดแบบเรียกซ้ำ ตรรกะควรง่ายพอที่จะปรับแต่งและมีจุดมุ่งหมายที่จะรวดเร็ว (เอ้อ) โดยหลีกเลี่ยงการเรียกใช้ฟังก์ชัน

function get_all_php_files($directory) {
    $directory_stack = array($directory);
    $ignored_filename = array(
        '.git' => true,
        '.svn' => true,
        '.hg' => true,
        'index.php' => true,
    );
    $file_list = array();
    while ($directory_stack) {
        $current_directory = array_shift($directory_stack);
        $files = scandir($current_directory);
        foreach ($files as $filename) {
            //  Skip all files/directories with:
            //      - A starting '.'
            //      - A starting '_'
            //      - Ignore 'index.php' files
            $pathname = $current_directory . DIRECTORY_SEPARATOR . $filename;
            if (isset($filename[0]) && (
                $filename[0] === '.' ||
                $filename[0] === '_' ||
                isset($ignored_filename[$filename])
            )) 
            {
                continue;
            }
            else if (is_dir($pathname) === TRUE) {
                $directory_stack[] = $pathname;
            } else if (pathinfo($pathname, PATHINFO_EXTENSION) === 'php') {
                $file_list[] = $pathname;
            }
        }
    }
    return $file_list;
}

คำถามไม่ได้ขอรายชื่อไฟล์หรือการสอบถามซ้ำ เพียงรายการของไดเรกทอรีในไดเรกทอรีที่กำหนด
miken32

ฉันตระหนักดี ในเวลานั้นฉันเชื่อว่านี่เป็นคำตอบยอดนิยมใน Google หรือที่คล้ายกันดังนั้นฉันจึงเพิ่มโซลูชันของฉันสำหรับผู้ที่มองหาการใช้งานแบบเรียกซ้ำซึ่งไม่ทำให้เกิดสแต็ก ฉันไม่เห็นอันตรายใด ๆ ในการจัดหาสิ่งที่สามารถลดเพื่อแก้ไขปัญหาเดิม
SilbinaryWolf

-1

หากคุณกำลังมองหาวิธีแก้ไขปัญหารายชื่อไดเรกทอรีซ้ำ ใช้รหัสด้านล่างฉันหวังว่ามันจะช่วยคุณ

<?php
/**
 * Function for recursive directory file list search as an array.
 *
 * @param mixed $dir Main Directory Path.
 *
 * @return array
 */
function listFolderFiles($dir)
{
    $fileInfo     = scandir($dir);
    $allFileLists = [];

    foreach ($fileInfo as $folder) {
        if ($folder !== '.' && $folder !== '..') {
            if (is_dir($dir . DIRECTORY_SEPARATOR . $folder) === true) {
                $allFileLists[$folder . '/'] = listFolderFiles($dir . DIRECTORY_SEPARATOR . $folder);
            } else {
                $allFileLists[$folder] = $folder;
            }
        }
    }

    return $allFileLists;
}//end listFolderFiles()


$dir = listFolderFiles('your searching directory path ex:-F:\xampp\htdocs\abc');
echo '<pre>';
print_r($dir);
echo '</pre>'

?>

-1

ฟังก์ชันเรียกซ้ำต่อไปนี้จะส่งคืนอาร์เรย์ที่มีรายการไดเรกทอรีย่อยทั้งหมด

function getSubDirectories($dir)
{
    $subDir = array();
    $directories = array_filter(glob($dir), 'is_dir');
    $subDir = array_merge($subDir, $directories);
    foreach ($directories as $directory) $subDir = array_merge($subDir, getSubDirectories($directory.'/*'));
    return $subDir;
}

ที่มา: https://www.lucidar.me/en/web-dev/how-to-get-subdirectories-in-php/


คำถามไม่ได้ขอการสอบถามซ้ำ เพียงรายชื่อของไดเรกทอรีในไดเรกทอรีที่กำหนดซึ่งมีให้กับพวกเขาในปี 2010
miken32

-2

ค้นหาไฟล์และโฟลเดอร์ทั้งหมดภายใต้ไดเรกทอรีที่ระบุ

function scanDirAndSubdir($dir, &$fullDir = array()){
    $currentDir = scandir($dir);

    foreach ($currentDir as $key => $val) {
        $realpath = realpath($dir . DIRECTORY_SEPARATOR . $val);
        if (!is_dir($realpath) && $filename != "." && $filename != "..") {
            scanDirAndSubdir($realpath, $fullDir);
            $fullDir[] = $realpath;
        }
    }

    return $fullDir;
}

var_dump(scanDirAndSubdir('C:/web2.0/'));

ตัวอย่าง:

array (size=4)
  0 => string 'C:/web2.0/config/' (length=17)
  1 => string 'C:/web2.0/js/' (length=13)
  2 => string 'C:/web2.0/mydir/' (length=16)
  3 => string 'C:/web2.0/myfile/' (length=17)

นี่ไม่ใช่คำตอบที่สมบูรณ์เนื่องจากไม่สามารถเรียกใช้ได้
miken32

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