import java.io.File;
import java.io.IOException;
public class CreateFileUtil {
public static boolean CreateFile(String destFileName) {
File file = new File(destFileName);
if (file.exists()) {
System.out.println("建立單一檔案" + destFileName + "失敗,目標檔案已存在!");
return false;
}
if (destFileName.endsWith(File.separator)) {
System.out.println("建立單一檔案" + destFileName + "失敗,目標不能是目錄!");
return false;
}
if (!file.getParentFile().exists()) {
System.out.println("目標檔案所在路徑不存在,準備建立。。");
if (!file.getParentFile().mkdirs()) {
System.out.println("建立目錄檔案所在的目錄失敗!");
return false;
}
}
// 建立目標文件
try {
if (file.createNewFile()) {
System.out.println("建立單一檔案" + destFileName + "成功!");
return true;
} else {
System.out.println("建立單一檔案" + destFileName + "失敗!");
return false;
}
} catch (IOException e) {
e.printStackTrace();
System.out.println("建立單一檔案" + destFileName + "失敗!");
return false;
}
}
public static boolean createDir(String destDirName) {
File dir = new File(destDirName);
if(dir.exists()) {
System.out.println("建立目錄" + destDirName + "失敗,目標目錄已存在!");
return false;
}
if(!destDirName.endsWith(File.separator))
destDirName = destDirName + File.separator;
// 建立單一目錄
if(dir.mkdirs()) {
System.out.println("建立目錄" + destDirName + "成功!");
return true;
} else {
System.out.println("建立目錄" + destDirName + "成功!");
return false;
}
}
public static String createTempFile(String prefix, String suffix, String dirName) {
File tempFile = null;
try{
if(dirName == null) {
// 在預設資料夾下建立臨時文件
tempFile = File.createTempFile(prefix, suffix);
return tempFile.getCanonicalPath();
}
else {
File dir = new File(dirName);
// 如果暫存檔案所在目錄不存在,先建立
if(!dir.exists()) {
if(!CreateFileUtil.createDir(dirName)){
System.out.println("建立暫存檔案失敗,無法建立暫存檔案所在目錄!");
return null;
}
}
tempFile = File.createTempFile(prefix, suffix, dir);
return tempFile.getCanonicalPath();
}
} catch(IOException e) {
e.printStackTrace();
System.out.println("建立暫存檔案失敗" + e.getMessage());
return null;
}
}
public static void main(String[] args) {
// 建立目錄
String dirName = "c:/test/test0/test1";
CreateFileUtil.createDir(dirName);
// 建立文件
String fileName = dirName + "/test2/testFile.txt";
CreateFileUtil.CreateFile(fileName);
// 建立臨時文件
String prefix = "temp";
String suffix = ".txt";
for(int i = 0; i < 10; i++) {
System.out.println("建立了暫存檔案:" + CreateFileUtil.createTempFile(prefix, suffix, dirName));
}
}
}