URLのデータベースでfile::fetchを実行している間、特定のURLにはhttp://google.comなどのトップレベルドメインのみが含まれます。フェッチするファイルがあることを確認するようにifチェックを構築するにはどうすればよいですか?新しいfile :: fetchオブジェクトを作成するときに、このエラーはスローされません:
Use of uninitialized value $path in pattern match (m//) at C:/Perl/lib/File/Spec/Unix.pm line 267.
Use of uninitialized value in string eq at C:/Perl/lib/File/Fetch.pm line 395.
これが私のコードのスニペットで、検証を行おうとしています
my $uri_handle = File::Fetch->new(uri => $url);
my $getfile = $uri_handle ->file;
if ($getfile){
my $dir_handle = $uri_handle->fetch( to => $dir ) or die "Couldn't fetch file: $uri_handle->error\n";
#print "[ID:$myid] File fetch completed!\n\n";
}else{
print "[ID:$myid] There is no file to be fetched from $url\n\n";
}
ただし、URLでファイル名を取得できなかったため、fileメソッドも失敗します。
Thread 1 terminated abnormally: Can't call method "file" on an undefined value at C:\test\multihashtest2.pl line 102.