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:
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\. |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java Example program to get the current working directory
Post your Comment