If I want to create a file in C:/a/b/test.txt can I do someting like
File f = new File("C:/a/b/test.txt");
and use FileOutputStream to create the file? If so, how? For some reason the file doesn't get created in the right directory.
|
|
|
The best way to do it is:
|
||||
|
You need to ensure that the parent directories exist before writing. You can do this by
|
|||||||||
|
|
Use:
Notice I changed the forward slashes to double back slashes for paths in Windows File System. This will create an empty file on the given path. |
||||
This should create a new file inside a directory |
||||
|
|
|
I have used
This creates a folder wih the name "nayan.txt", not a file. Can you please tell me, how to create a file with name "nayan.txt"? I reapeat FILE not a FOLDER, with the help of FIle class. |
|||
|
|