(File dir)
| 129 | } |
| 130 | |
| 131 | public static void clear(File dir) { |
| 132 | if (dir == null) return; |
| 133 | if (dir.isDirectory()) for (File file : list(dir)) clear(file); |
| 134 | if (dir.delete()) SpiderDebug.log("Deleted:" + dir.getAbsolutePath()); |
| 135 | } |
| 136 | |
| 137 | public static File create(File file) { |
| 138 | try { |