Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to write a new file with the FileWriter. I use it like this:

FileWriter newJsp = new FileWriter("C:\\user\Desktop\dir1\dir2\filename.txt");

Now dir1 and dir2 currently don't exist. I want Java to create them automatically if they aren't already there. Actually Java should set up the whole file path if not already existing.

How can I achieve this?

share|improve this question

4 Answers

up vote 54 down vote accepted

Something like:

File file = new File("C:\\user\\Desktop\\dir1\\dir2\\filename.txt");
file.getParentFile().mkdirs();
FileWriter writer = new FileWriter(file);
share|improve this answer

Use File.mkdirs():

File dir = new File("C:\\user\\Desktop\\dir1\\dir2");
dir.mkdirs();
File file = new File(dir, "filename.txt");
FileWriter newJsp = new FileWriter(file);
share|improve this answer

Use File.mkdirs().

share|improve this answer
+1: quote the docs – ted Jul 23 '12 at 13:26

Use FileUtils to handle all these headaches.

Edit: For example, use openOutputStream(File file [, boolean append]) to write to a file, this method will 'checking and creating the parent directory if it does not exist'.

share|improve this answer
1  
Please, could you be more specific? – Jean Apr 11 at 9:47
Hi Jean, Edited. There is a whole bunch of other useful methods under FileUtils. Apache Commons IO classes such as OIUtils and FileUtils makes java developers' life easier. – kakacii Apr 12 at 2:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.