I\'m trying to open a file in a Java
program (say Program.java
) using relative path.
I have two directories as follows:
Project
String path="firstpath" +File.separator +".." +File.separator +"secondpath";
From what you are saying, you should set path to:
../Business/Scenarios/SC01.txt
../ to go up one level then the rest is the relative path against ProjectWork
In Java file when you use a relative path without another argument, the file is matched against the System property user.dir
which matches the working directory.