(File dir)
| 103 | } |
| 104 | |
| 105 | public void createDir(File dir) { |
| 106 | if (!dir.exists()) { |
| 107 | if (!dir.mkdirs()) { |
| 108 | throw new RuntimeException(String.format("Cant' create directory(%s)!", dir)); |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | public boolean delete(File file) { |
| 114 | return delete(file, false); |