We can make use of the System.getProperty() method to get the current working directory using Java code.
Example:
public static void main(String[] args) {
String currentWorkingDirectory = System.getProperty("user.dir");
System.out.println("The Current Working Directory: " + currentWorkingDirectory);
}
Output:

Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!