April 4th, 2011
2:18 pm
How to obtain the current default directory in Java

Posted under Java
Tags ,

This simple line of code does it, by looking up the current directory (“.”) and fetching its canonical path :-

 

System.out.println(new File(".").getCanonicalPath());

No Comments »

Trackback URI | Comments RSS

Leave a Reply

You must be logged in to post a comment.