...
Code Block | ||
---|---|---|
| ||
File someFile = new File("someFileName.txt"); // do something with someFile if (!someFile.delete()) { // handle the fact that the file has not been deleted } |
...
...
Code Block | ||
---|---|---|
| ||
File someFile = new File("someFileName.txt"); // do something with someFile if (!someFile.delete()) { // handle the fact that the file has not been deleted } |
...