郑永安
2023-06-19 f65443d8abeaedc9d102324565e8368e7c9d90c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.gk.firework.Domain.Utils;
 
import java.io.File;
/**
 * Created by Administrator on 2018/1/28.
 */
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.mkdirs();
                return true;
            }
        } catch (Exception e) {
          return false;
        }
    }
}