Java中File的處理
阿新 • • 發佈:2019-03-16
span print div new ati cto 表示 nbsp .com
不知道“文件”和“文件路徑”是否存在的處理情況
1.如果是文件,先獲取文件父路徑,沒有就生成父路徑,然後再生成文件。
1 public class TestMain { 2 3 public static void main(String[] args) { 4 // 文件和文件夾都不存在的情況 5 File file = new File("D:\\aa\\bb\\cc.txt"); 6 // 1.判斷文件的父文件夾是否存在 7 File parent = newFile(file.getParent()); 8 if (!parent.exists()) { 9 System.out.println("父文件夾不存在創建"); 10 // 註意:mkdirs 帶 s 表示創建多層文件夾(不存在的一路創建過來)。 11 parent.mkdirs(); 12 try { 13 boolean b = file.createNewFile(); 14 if (b) {15 System.out.println("創建文件成功"); 16 }else{ 17 System.out.println("創建文件失敗"); 18 } 19 } catch (IOException e) { 20 System.out.println("創建文件失敗"); 21 } 22 } 23 24 }
2.如果父路徑存在,就判斷文件是否存在,不存在就生成文件。
1 public class TestMain { 2 3 public static void main(String[] args) throws IOException { 4 // 文件不存在的情況 5 File file = new File("D:\\aa\\bb\\cc.txt"); 6 // 1.判斷文件的父文件夾是否存在 7 File parent = new File(file.getParent()); 8 if (!parent.exists()) { 9 System.out.println("父文件夾不存在"); 10 }else{ 11 System.out.println("父文件夾存在"); 12 if (!file.isDirectory()) { 13 boolean b = file.createNewFile(); 14 if (b) { 15 System.out.println("文件創建成功"); 16 }else{ 17 System.out.println("文件創建失敗"); 18 } 19 }else{ 20 System.out.println("文件存在"); 21 } 22 } 23 } 24 }
Java中File的處理