我正在编写一个 perl 脚本来打开一个文本文件并对其执行一些转换。每当文本文件不可用时,脚本都会引发错误,提示“不存在此类文件或目录”。
我想抓住那个错误然后创建文本文件。
while (<>) { #i am passing filename from the batch file
#some task
}
# if the above while loop fails it throws no such file or directory exists error. I want to catch it and do some other task.