| Author |
File Deletion is failing.
|
Pankaj Shet
Ranch Hand
Joined: Sep 08, 2006
Posts: 167
|
|
Hi friends,
I am trying to delete a file.
This is the program for the same.:
File f= new File(file);
boolean success=false;
if(f.exists())
{
System.out.println("File Exits: " +f.exists()+" Files Deleted:"+f.delete());
}
}
This outputs:
File Exits:true Files Deleted:false
I also checked for the appropriate permissions.
This file has all permissions.
Can any one help me regarding why this file is not getting deleted.
Any help is always appreciated.
Thanks and Regards,
-Pankaj.
|
PANKAJ SHET
B.Sc.(I.T.), S.C.J.P., S.C.W.C.D., PGDAC(CDAC)
|
 |
John Jai
Bartender
Joined: May 31, 2011
Posts: 1778
|
|
|
Check if you have closed all the streams accessing the file & the file is not kept opened by any other application.
|
 |
Dan Drillich
Ranch Hand
Joined: Jul 09, 2001
Posts: 1126
|
|
Please have a look at - How to tell why a file deletion fails in Java?
Regards,
Dan
|
William Butler Yeats: All life is a preparation for something that probably will never happen. Unless you make it happen.
|
 |
 |
|
|
subject: File Deletion is failing.
|
|
|