简体   繁体   中英

PHP Check if dynamic named folder exists

I'm having problems checking if a dinamically named folder exists using php. I know i can use

file_exists()

to check if a folder or file exists, but the problem is that the name of the folders I'm checking may vary.

I have folders where the first part of the name is fixed, and the part after "_" can vary. As an example: folder_0, where every folder will start with "folder_" but after the "_" it can be anything.

Anyway i can check if a folder with this property exists?

Thanks in advance. SR

You make a loop to go through all the files/folders in the parent folder:

$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
    }
}
function find_wildcard_dirs($prefix)
{
   return array_filter(glob($prefix), 'is_dir');

}

eg

print_r(find_wildcard_dirs("/tmp/santos_*'));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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