1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.gkhy.safePlatform.doublePrevention.utils;
|
| import java.io.File;
|
| public class FileOptUtils {
|
| public static Boolean isDirExists(String filename) {
| try {
| File file = new File(filename);
| if (file.exists()) {
| if (file.isDirectory()) {
| return true;
| } else {
| return false;
| }
| } else {
| file.mkdir();
| return true;
| }
| } catch (Exception e) {
| return false;
| }
| }
| }
|
|