Perl 文件通配的奇怪现象

发布于 2024-10-19 00:46:46 字数 743 浏览 2 评论 0原文

我正在编写一个脚本,它将循环遍历一系列数字,构建一个 glob 模式,并根据 glob 测试目录中是否存在文件。

这些图像是纳斯卡汽车号码图像,并遵循以下模式:

1_EARNHARDTGANASSI_256.TGA
2_PENSKERACING_256.TGA

这是我正在使用的脚本的片段:

foreach $currCarNum (0..101) {  
    if (glob("//headshot01/CARS/${currCarNum}_*_256.TGA")) {    
        print("Car image $currCarNum exists\n");
    } else {
        print("Car image $currCarNum doesn't exist\n");
    }   
}

我遇到的问题是目录中存在图像,并且应该与文件 glob 匹配模式没有。

例如,具有以下名称的文件将返回为不存在:

2_PENSKERACING_256.TGA

而以下名称将返回为存在:

1_EARNHARDTGANASSI_256.TGA

如果我在 DOS 或 Cygwin 中使用相同的文件 glob 模式,则两个文件都会正确列出。

文件 glob 模式在 Perl 中的解释是否不同?我有什么遗漏的吗?

I'm writing a script that will loop through a range of numbers, build a glob pattern, and test if a file exists in a directory based on the glob.

The images are Nascar car number images, and follow the the following pattern:

1_EARNHARDTGANASSI_256.TGA
2_PENSKERACING_256.TGA

Here is a snippet of the script that I am using:

foreach $currCarNum (0..101) {  
    if (glob("//headshot01/CARS/${currCarNum}_*_256.TGA")) {    
        print("Car image $currCarNum exists\n");
    } else {
        print("Car image $currCarNum doesn't exist\n");
    }   
}

The problem I'm having, is that images that exist in the directory, and that should match the file glob pattern do not.

For example, the file with the following name returns as not existing:

2_PENSKERACING_256.TGA

Whereas, the following returns as existing:

1_EARNHARDTGANASSI_256.TGA

If I use the same file glob pattern in DOS or Cygwin, both files are listed properly.

Are file glob patterns interpreted differently in Perl? Is there something I am missing?

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

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

发布评论

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

评论(2

月光色 2024-10-26 00:46:46

您需要以列表格式而不是标量格式返回结果。尝试一下你的 if 语句,当我测试它时它对我有用。

if (my @arr = glob("//headshot01/CARS/${currCarNum}_*_256.TGA")) {

You need to have the results returned in a list format instead of a scalar format. Try this for your if statement, it worked for me when I tested it.

if (my @arr = glob("//headshot01/CARS/${currCarNum}_*_256.TGA")) {
青衫负雪 2024-10-26 00:46:46

来自 perldoc perlop

(文件)glob 评估其(嵌入)
仅当它开始时才争论
新列表。必须读取所有值
在它重新开始之前。在列表中
上下文,这并不重要,因为
无论如何,你都会自动获得它们。
然而,在标量环境中
运算符返回下一个值
被调用的时间,或 undef 当
名单已用完

From perldoc perlop:

A (file)glob evaluates its (embedded)
argument only when it is starting a
new list. All values must be read
before it will start over. In list
context, this isn't important because
you automatically get them all anyway.
However, in scalar context the
operator returns the next value each
time it's called, or undef when the
list has run out
.

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