Relative Pathname ifExists
I am trying to determine if a file exists using a relative path, but can't get it to work.
Example
String strURL= "../../../../../Dir/file.txt";
But when I do this code:
File file = new File(strURL);
if (file.exists() ) {
it never finds it . . Absolute path will work.
I guess I am not sure what path I am starting off in. Has anyone ever used this code in a JSP ? Thanks

