Mega Code Archive

 
Categories / Java / File Input Output
 

Getting an Absolute Filename Path from a Relative Filename parent Path

import java.io.File; public class Main {   public static void main(String[] argv) throws Exception {     File file = new File(".." + File.separatorChar + "filename.txt");     file = file.getAbsoluteFile();   } }