import java.io.File; class FileLibrary { public static void makeFile(String path) { File file = new File(path); if (file.exists() == false) { new File(file.getParentFile().getPath()).mkdirs(); try { file.createNewFile(); } catch (Exception e) { e.printStackTrace(); } } } }
'JAVA Platform > JAVA' 카테고리의 다른 글
[JAVA] - 배열 복사 방법 (0) | 2014.11.02 |
---|---|
[JAVA] - SQLite Connection (0) | 2014.09.21 |
[JAVA] - CharSequence 사용법 (0) | 2014.09.08 |
[JAVA] - String, StringBuffer, StringBuilder 버전에 따른 차이 (0) | 2014.09.08 |
[JAVA] - Collection 관련 클래스의 동기화 (0) | 2014.09.08 |