Hi freinds,
Is it possible to create a new folder in a given directory using java..?
I need to create the directory and then copy some images into the same..
Hi freinds,
Is it possible to create a new folder in a given directory using java..?
I need to create the directory and then copy some images into the same..
Thanks
Have a look at the FileSystemView class; it can create directories given
an abstract path (a File object).
Thanks for the concern..
But I need the exact implementation of the abstract function createNewFolder..
Please help..
The FileSystemView has a static factory method that gives you an implementation
of the abstract FileSystemView class. Check the API documentation again.
Hi freinds,
Is it possible to create a new folder in a given directory using java..?
I need to create the directory and then copy some images into the same..
Thanks
you can use filename.mkdir(); for creating new directory.