The follow code shows if a file exists using PERL lenguaje
$filename="FILEX.TXT";
if (-e $filename) {
print "File Exists!";
}
else
{
print "don't exists";
}
The follow code shows if a file exists using PERL lenguaje
$filename="FILEX.TXT";
if (-e $filename) {
print "File Exists!";
}
else
{
print "don't exists";
}
For further actions, you may consider blocking this person and/or reporting abuse
Peter Jacxsens -
Peter Jacxsens -
Innovative Insight -
Hejun Wong -
Top comments (0)