I have the following code :
public Tester()
{
try {
File f4 = new File("C:\\Vase.zip");
System.out.println(f4.exists());
f4.delete();
System.out.println(f4.exists());
} catch (Exception e) {
e.printStackTrace();
}
}
When I run the program, it does not delete the file. (If I place the file in the D drive and then ask it to delete, it works perfectly.) So I know that it is a permissions thing. I am using eclipse. I ran eclipse in admin mode only [in windows].
The program is able to write and delete other files, but this one alone is not working. Can anyone guide me on how to solve this?
e.printStackTrace()withthrow new RuntimeException(e)(or have the methodthrows IOExceptionand propagate it up) - that is, let the program die (removing any superfluous outertry/catchas well) instead of stuffing it into a print trace which might be buried. After that: does the program die horribly with an Exception? – user166390 Jan 19 at 5:42