Results 1 to 4 of 4
Thread: Delete direcory
- 07-04-2011, 02:55 PM #1
Member
- Join Date
- Jul 2011
- Posts
- 3
- Rep Power
- 0
Delete direcory
hi every body
i want to delete directory that may contain another directory or text file i use this recursive code when i send a directory that contain 2 text file method delete the second element in array and do not delete the first file and i do not know why?
Java Code:public boolean delete(File f) { if (f.exists()) { File[] files = f.listFiles(); for (int i = 0; i < files.length; i++) { if (files[i].isDirectory()) { System.out.println(delete(files[i])); } else { System.out.println(files[i].delete()); } } } return (f.delete()); }Last edited by JosAH; 07-04-2011 at 05:37 PM. Reason: added [code] ...[/code] tags
- 07-04-2011, 05:42 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,606
- Blog Entries
- 7
- Rep Power
- 17
You program logic is incorrect: if f exists it doesn't have to be a directory, it can be an ordinary file.
kind regards,
JosWhen people rob a bank they get a penalty; when banks rob people they get a bonus.
- 07-05-2011, 02:13 AM #3
@Jos
That was my initial thought. Then I assumed that the initial call to the method is made with a known directory.
@OP
If you code is unable to delete a file then you may not have permissions to delete it or that some program (possibly the one you are currently running) has the file open. Make sure all files are closed before you try deleting them.
- 07-06-2011, 07:34 PM #4
Member
- Join Date
- Jul 2011
- Posts
- 3
- Rep Power
- 0
Similar Threads
-
How to delete a JLabel by using the keyboard 'delete' key?
By Suren in forum AWT / SwingReplies: 2Last Post: 04-20-2009, 08:00 AM -
help to delete
By andykots in forum Advanced JavaReplies: 1Last Post: 01-29-2009, 08:29 AM -
Delete
By Sarinam in forum New To JavaReplies: 6Last Post: 07-23-2008, 11:09 AM -
Delete From .txt file
By Sarinam in forum New To JavaReplies: 86Last Post: 06-28-2008, 10:17 AM -
How to delete a file
By Alpha in forum New To JavaReplies: 1Last Post: 05-26-2007, 08:11 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks