I used the following code to delete the text file. But it won't delete the file, which still exists.
File delfile=new File("SDS_DID.txt");
delfile.delete();
How to delete a file?
|
|||||||||
|
|
|||||||||||
|
|
The most common problem is the file is not found. Make sure the file already exists.
You can't just pick up a file anywhere on the hard drive, you have to tell where it actually is. |
|||
|
|
delfile.exists())? Also, always check the return value ofdelete(). It won't show you why it failed but whether it failed. Which is not much but better than nothing. – musiKk Aug 8 '11 at 17:50