자바 생 성 파일

String 형식의 strPath 를 정의 합 니 다. 이 폴 더 는 존재 할 수도 있 고 존재 하지 않 을 수도 있 습 니 다. 그리고 File 형식 을 정의 하여 strPath 를 넣 고 마지막 으로 판단 합 니 다. 이 폴 더 가 존재 하지 않 으 면 strPath 형식 에 따라 폴 더 를 만 들 고 반대로 판단 합 니 다.
	String strPath = "d:\\file\\a";
	File file = new File(strPath);
	if(!file.exists()){
		file.mkdirs();
	}

새 폴 더 를 만 들 고 이 폴 더 아래 에 파일 을 만 들 려 면 다음 과 같이 하 겠 습 니 다.
package image;

import java.io.File;
import java.io.IOException;

public class test {
public static void main(String[] args) throws IOException {
 String strPath="d:/file/a/a.txt";
 File file = new File(strPath);
 File fileParent = file.getParentFile();
 if(!fileParent.exists()){
	 fileParent.mkdirs();
 }
 file.createNewFile();
	
}
}

좋은 웹페이지 즐겨찾기