import java.io.File;
public class FileTest {
public static void main(String[] args) {
isExist("e:\\File");
}
/**
*
* @param path 資料夾路徑
*/
public static void isExist(String path) {
File file = new File(path);
//判斷資料夾是否存在,如果不存在則建立資料夾
if (!file.exists()) {
System.out.println("資料夾不存在,並建立");
file.mkdir();
}else{
System.out.println("資料夾存在");
}
}
}