1

我在检查是否存在使用 php.ini 命名的文件夹时遇到问题。我知道我可以使用

file_exists()

检查文件夹或文件是否存在,但问题是我正在检查的文件夹的名称可能会有所不同。

我有文件夹,其中名称的第一部分是固定的,“_”之后的部分可能会有所不同。例如:folder_0,其中每个文件夹都以“folder_”开头,但在“_”之后可以是任何东西。

无论如何,我可以检查是否存在具有此属性的文件夹?

提前致谢。SR

4

2 回答 2

3

您循环遍历父文件夹中的所有文件/文件夹:

$folder = '/path-to-your-folder-having-subfolders';
$handle = opendir($folder) or die('Could not open folder.'); 
while (false !== ($file = readdir($handle))) { 
    if (preg_match("|^folder_(.*)$|", $file, $match)) {
        $curr_foldername = $match[0];
        // If you come here you know that such a folder exists and the full name is in the above variable
    }
}
于 2013-11-01T10:29:16.213 回答
1
function find_wildcard_dirs($prefix)
{
   return array_filter(glob($prefix), 'is_dir');

}

例如

print_r(find_wildcard_dirs("/tmp/santos_*'));
于 2013-11-01T10:42:49.307 回答