try { cons = jdk12MakeDirectoryAction.class.getConstructor(new Class[] { File.class}); } catch (Throwable e) { } this.file = file;
try { if (file != null) { if (file.exists() || file.mkdirs()) return TRUE; else return FALSE; } else { return FALSE; } } catch (Throwable e) { return null; }