DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   Java (http://www.daniweb.com/forums/forum9.html)
-   -   how can we delete a directory in java??? (http://www.daniweb.com/forums/thread122721.html)

alpe gulay May 6th, 2008 7:09 am
how can we delete a directory in java???
 
.,'is any knows the code to delete a directory in java...
help me pls...

YOUR ANSWER IS HIGHLY APPRECIATED!..

darkagn May 6th, 2008 8:00 am
Re: how can we delete a directory in java???
 
Hi alpe gulay,

It seems from your questions that you are a bit of a beginner at Java. Take a look at the post at the top of this forum. It contains several great links that might be able to help you in your journey. The website java.sun.com is particularly helpful, with tutorials, examples and the API documentation as well as many other Java resources.

In answer to this specific question, there are probably many ways to do what you want. Off the top of my head I would suggest taking a look at the java.io.File.deleteOnExit() method for a simple way of deleting any file (and therefore directory) when the virtual machine terminates.

Hope this helps,
darkagn :)

Ezzaral May 6th, 2008 12:12 pm
Re: how can we delete a directory in java???
 
A directory is deleted just like any file - with File.delete(). A directory must be empty to be deleted, so if it contains files you must recurse the directory and delete all files and subdirectories first.

gagansnt May 6th, 2008 4:11 pm
Re: how can we delete a directory in java???
 
Quote:

Originally Posted by alpe gulay (Post 600687)
.,'is any knows the code to delete a directory in java...
help me pls...

YOUR ANSWER IS HIGHLY APPRECIATED!..

There is no API in java that deletes a folder directly. You first have to recursively delete all the contents of the folder and then only you can delete folder.

Like this
// Deletes all files and subdirectories under dir.
// Returns true if all deletions were successful.
// If a deletion fails, the method stops attempting to delete and returns false.
public static boolean deleteDir(File dir) {
if (dir.isDirectory()) {
String[] children = dir.list();
for (int i=0; i<children.length; i++) {
boolean success = deleteDir(new File(dir, children[i]));
if (!success) {
return false;
}
}
}

// The directory is now empty so delete it
return dir.delete();
}

alpe gulay May 6th, 2008 11:37 pm
Re: how can we delete a directory in java???
 
.,thank you so much...

alpe gulay May 6th, 2008 11:39 pm
Re: how can we delete a directory in java???
 
actually i am still beginners in java...that's why!!!!
thanx a lot!!!


All times are GMT -4. The time now is 10:39 am.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC