April 4th, 2011
2:18 pm
Posted under Java
Permalink
Tags Java, Tip
This simple line of code does it, by looking up the current directory (“.”) and fetching its canonical path :-
System.out.println(new File(".").getCanonicalPath());
Leave a Reply
You must be logged in to post a comment.