创建文件夹 @param DirPath 文件夹路径
(String DirPath)
| 117 | * @param DirPath 文件夹路径 |
| 118 | */ |
| 119 | public static void mkdir(String DirPath) { |
| 120 | File file = new File(DirPath); |
| 121 | if (!(file.exists() && file.isDirectory())) { |
| 122 | file.mkdirs(); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * 格式化文件路径 |
no outgoing calls
no test coverage detected