我是 perl 新手。我试图执行下面提到的程序:
我正在尝试打开一个文件并从文件中读取内容。
$FILE=open(FILE,"\\10.82.71.28\Testing501\Test_Folder\834_KMS_FACE_834A.mms");
if($FILE)
{
print "The file: $FILE has opened successfully";
}
else
{
die "There is an error while opening the file :$!\n";
}
while($record=<FILE>)
{
print $record;
}
close(FILE);
但是在执行程序时,我遇到了一个错误:
打开文件时出错:invalid argument