in reply to how to know if a path exists or not

File test operations are cataloged in -X. In particular, -e will tell you if something exists at that path, and -f and -d will test if a given string corresponds to a file and a directory respectively.

#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

Replies are listed 'Best First'.
Re^2: how to know if a path exists or not
by Anonymous Monk on Oct 11, 2012 at 15:17 UTC

    I would try to open the path and see if it exists or not