Published
- 1 min read
java create file in folder
The solution for this is noted below
java create file in folder
Solution
File file = new File("src/resources/run.txt");
file.getParentFile().mkdirs();
FileWriter writer = new FileWriter(file);
writer.append("this is a test");
writer.close();
Try other methods by searching on the site. That is if this doesn’t work