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; } } }