Remove all files in a directory and the directory itself. Prints error messages with failed filenames. Does not follow symlinks.
(File dir)
| 305 | * Prints error messages with failed filenames. Does not follow symlinks. |
| 306 | */ |
| 307 | static public boolean removeDir(File dir) { |
| 308 | return removeDir(dir, true); |
| 309 | } |
| 310 | |
| 311 | /** |
| 312 | * Remove all files in a directory and the directory itself. |
no test coverage detected