This example java program illustrates to get the current working directory (CWD). With the File class object we can get two types of paths in java.
Java Example program to get the current working directory
This example java program illustrates to get the current working directory (CWD). With the File class object we can get two types of paths in java. These are as follows:
- Canonical Path and
- Absolute Path
We can get the canonical path by calling the getCononicalPath() with the File class object and for absolute path we can use getAbsolutePath() method.
Here is the full example source code for CurrentWorkingDirectory.java as follows:
CurrentWorkingDirectory.java
import java.io.File;
|
Output:
C:\javaexamples>javac CurrentWorkingDirectory.java C:\javaexamples>java CurrentWorkingDirectory Current directory's canonical path: C:\javaexamples Current directory's absolute path: C:\javaexamples\. |