作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图遍历Perl中当前目录的所有子目录,并从这些文件中获取数据。我正在使用grep获取给定目录中所有文件和文件夹的列表,但是我不知道返回的哪个值是文件夹名称,哪个是没有文件扩展名的文件。
我该如何区分?
最佳答案
您可以使用 -d 文件测试运算符来检查目录中是否包含某些内容。这是一些常用的文件测试运算符
-e File exists. -z File has zero size (is empty). -s File has nonzero size (returns size in bytes). -f File is a plain file. -d File is a directory. -l File is a symbolic link.
See perlfunc manual page for more
Also, try using File::Find which can recurse directories for you. Here's a sample which looks for directories....
sub wanted {
if (-d) {
print $File::Find::name." is a directory\n";
}
}
find(\&wanted, $mydir);
关于perl - 如何在Perl中将文件与目录区分开?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/206320/
我是一名优秀的程序员,十分优秀!