Check if a path exists in Java
Description
The following code shows how to check if a path exists.
Example
// w w w .jav a 2 s. c om
import java.nio.file.Files;
import java.nio.file.LinkOption;
import java.nio.file.Path;
import java.nio.file.Paths;
public class Main {
public static void main(String[] args) throws Exception {
Path firstPath = Paths.get("/home/music/users.txt");
Path secondPath = Paths.get("/docs/status.txt");
System.out.println("exists: " + Files.exists(firstPath));
System.out.println("notExists: " + Files.notExists(firstPath));
}
}
The code above generates the following result.