dongzhuange2625 2013-11-01 02:08
浏览 35
已采纳

PHP检查动态命名文件夹是否存在

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

  • 写回答

2条回答 默认 最新

  • dongtan7998 2013-11-01 02:29
    关注

    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
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部