ColonD
0
Q:

java create directory if not exists

String path = ...
File pathAsFile = new File(path);

if (!Files.exists(Paths.get(path))) {
	pathAsFile.mkdir();
}
2

New to Communities?

Join the community