Answers for "java create file and directory if not exists"

3

java create directory if not exists

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

if (!Files.exists(Paths.get(path))) {
	pathAsFile.mkdir();
}
Posted by: Guest on April-27-2020
1

java create file if not exists

String yourFile = "YourFile.txt";
String yourContent = "YourContent"

File tmpDir = new File(yourFile);
boolean exists = tmpDir.exists();

if(!exists) {
	FileOutputStream fos = new FileOutputStream(yourFile);
	fos.write(yourContent.getBytes());
	fos.flush();
	fos.close();
}
Posted by: Guest on April-26-2020

Code answers related to "java create file and directory if not exists"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language