gpt4 book ai didi

Perl LWP::Simple::getstore 如何检查目标目录中是否存在文件

转载 作者:行者123 更新时间:2023-12-01 19:37:18 27 4
gpt4 key购买 nike

在我的 Perl 脚本中,我使用 LWP::Simple::getstore 来检索图像并存储为文件。但在存储之前如何检查该文件是否已经存在?

这是片段

use constant FILE_DIR => "/home/destination/files/";
my $image_path = FILE_FOLDER."$item_id"."_"."$file_date.$image";
my $res = LWP::Simple::getstore($image_url,$image_path);

请帮我解决这个问题。

谢谢

最佳答案

您可以使用 file test ,例如

unless (-e $image_path) {
LWP::Simple::getstore($image_url, $image_path);
}

关于Perl LWP::Simple::getstore 如何检查目标目录中是否存在文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7118971/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com