check if directory exists java code example
Example 1: java create directory if not exists
String path = ...
File pathAsFile = new File(path);
if (!Files.exists(Paths.get(path))) {
pathAsFile.mkdir();
}
Example 2: java check if directory exists
Path path = ...;
if (Files.exists(path)) {
// ...
}