getUserDirectoryPath()
methodgetUserDirectoryPath()
is a FileUtils
that is used to return the path to the user’s home directory. The path to the user’s home directory is stored in the system property variable user.home
.
FileUtils
The definition of FileUtils
can be found in the Apache Commons IO package, which we can add to the Maven project by adding the following dependency to the pom.xml
file:
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
For other versions of the
commons-io
package, refer to the Maven Repository.
You can import the FileUtils
class as follows:
import org.apache.commons.io.FileUtils;
public static String getUserDirectoryPath()
The method has no parameters.
This method returns the path to the user’s home directory.
import org.apache.commons.io.FileUtils;public class Main{public static void main(String[] args){System.out.println("The path to the user's home directory is " + FileUtils.getUserDirectoryPath());}}
In the code above, we print the user’s home directory path obtained from the method FileUtils.getUserDirectoryPath()
.
The output of the code will be as follows:
The path to the user's home directory is /Users/educative