繁体   English   中英

递归获取目录中的所有文件,并按扩展名获取子目录

[英]Recursivly get all files in a directory, and sub directories by extension

我看着RecursiveDirectoryIteratorglob

,然后根据扩展名(例如)“。less返回文件列表(以数组形式)。哦,查找所有子代,孙代等等,不包括...直到找到所有匹配的文件。

但是我不确定创建一个递归函数的最佳方法,这种递归函数不会超出大孩子。

我有一个烂摊子,它已经工作了两年-但现在我需要重构和更改它:

public function get_directory_of_files($path, $filename, $extension) {
        if (!is_dir($path)) {
            throw new AisisCore_FileHandling_FileException("Could not find said path: " . $path);
        }

        if (file_exists($filename)) {
            $handler = opendir($path);
            while ($file = readdir($handler)) {
                if ($file != "." && $file != "..") {
                    $this->package_files [] = $file;
                    $count = count($this->package_files);
                    for ($i = 0; $i < $count; $i++) {
                        if (substr(strrchr($this->package_files [$i], '.'), 1) == $extension) {
                            if ($this->package_files [$i] == $filename) {
                                $this->files_got_back = $this->package_files [$i];
                            }
                        }
                    }
                }
            }
        }

        return $this->_files_got_back;
    }

这需要传递一个文件名,这实际上不是我要做的任何事情。 因此,我该如何重写此函数以执行上面的“ 伪代码

看一下这段代码:

<?php

class ex{

    private function get_files_array($path,$ext, &$results){ //&to ensure it's a reference... but in php obj are passed by ref.

        if (!is_dir($path)) {
            //throw new AisisCore_FileHandling_FileException("Could not find said path: " . $path);
        }

        if ($dir = opendir($path)) {
            $extLength = strlen($ext);

            while (false !== ($file = readdir($dir))) {
                if ($file != '.' && $file != '..'){
                    if (is_file($path.'/'.$file) && substr($file,-$extLength) == $ext){
                        $results[] = $path . '/' . $file; //it's a file and the correct extension
                    }
                    elseif (is_dir($path . '/'. $file)){ 
                        $this->get_files_array($path.'/'.$file, $ext, $results); //it's a dir
                    }               
                }
            }

        }else{
            //unable to open dir
        }
    }

    public function get_files_deep($path,$ext){
        $results = array();
        $this->get_files_array($path,$ext,$results);
        return $results;
    }

}

    $ex = new ex();

    var_dump($ex->get_files_deep('_some_path','.less'));

?>

它将检索路径及其子目录中具有匹配扩展名的所有文件。

希望这就是您所需要的。

此函数递归查找具有匹配的结束字符串的文件

function getDirectoryContents($directory, $extension)
{
    $extension = strtolower($extension);
    $files = array();
    $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory));

    while($it->valid()) 
    {
        if (!$it->isDot() && endsWith(strtolower($it->key()), $extension))
        {
            array_push($files, $it->key());
        }
        $it->next();
    }
    return $files;
}
function endsWith($haystack, $needle)
{
    return $needle === "" || substr($haystack, -strlen($needle)) === $needle;
}

像这样使用print_r(getDirectoryContents('folder /','.php'));

它将扩展名转换为小写以与

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM