使用perl來判斷文件是否存在

使用perl判斷某文件是否存在:html #!/usr/bin/perl -w my $file = "/home/zl/study/perl/fileexist/t.txt"; if(-e $file){ print "t.txt exist. \n"; }else{ print "do not exist. \n"; }判斷成功後,能夠在繼續對文件作其餘處理。 參考 : http://b
相關文章
相關標籤/搜索