处理 opendir 时出错

发布于 2024-10-30 09:00:53 字数 70 浏览 1 评论 0原文

当我尝试使用 opendir() 但该文件夹不存在时,我总是感到很温暖。如何处理此错误,并在打开目录之前验证该文件夹是否存在?

I always get a warming when I tried to use the opendir() but the folder does not exists. How can I handle this error, and verify if the folder exists before open the directory?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

满意归宿 2024-11-06 09:00:53

is_dir($directory)

如果文件名存在并且是目录,则返回 TRUE,否则返回 FALSE。

is_dir($directory)

Returns TRUE if the filename exists and is a directory, FALSE otherwise.

開玄 2024-11-06 09:00:53

您可以使用 is_dir() 检查目录是否存在

if(is_dir($dir)){
    // code
}

You can check if the directory exists with is_dir()

if(is_dir($dir)){
    // code
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文