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

블로그 이미지

행복그리고..

,