如何查看Perl中是否存在目录?

前端之家收集整理的这篇文章主要介绍了如何查看Perl中是否存在目录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
要在使用文件之前查看文件是否存在,我们可以使用:
if (-e "filename.cgi")
{
 #proceed with your code
}

但是如何识别目录存在与否?

解决方法

使用-d( full list of file tests)
if (-d "cgi-bin") {
    # directory called cgi-bin exists
}
elsif (-e "cgi-bin") {
    # cgi-bin exists but is not a directory
}
else {
    # nothing called cgi-bin exists
}

注意,-e不区分文件和目录。要检查是否存在某个是纯文件,请使用-f。

原文链接:https://www.f2er.com/Perl/173490.html

猜你在找的Perl相关文章