Can anyone tell me where Paths.get("")
points to?
Here is the code and the output.
public static void main(String[] args) {
Path path = Paths.get("");
System.out.printf("`%s`%n", path);
System.out.printf("`%s`%n", path.normalize());
System.out.println(Files.exists(path));
System.out.println(Files.isExecutable(path));
}
``
``
true
true
System.out.println(Paths.get("").toAbsolutePath());
/Users/andrew/workspace/scratch
Looks like it's the current working directory. On my machine, Java is reporting that it's executable because the 'x' flag on the directory is true for the current user.
From the javadocs:
This method checks that a file exists and that this Java virtual machine has appropriate privileges to execute the file. The semantics may differ when checking access to a directory. For example, on UNIX systems, checking for execute access checks that the Java virtual machine has permission to search the directory in order to access file or subdirectories.
It maps to the directory from which you run your program.
Convert it to an absolute path to test yourself.
System.out.println(Paths.get("").toAbsolutePath());
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With