Hey I'm trying to see if a file exsists but I'm using windows, I know in Linux you can use -e but that doesn't seem to work for me in windows.
Code:
if (-e $filename)
{
print "File Doesn't Exist!";
}
Comment