How to write path to go one level up and then down into another directory

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.


String path="firstpath" +File.separator +".." +File.separator +"secondpath";

Tags:

Java

Path