如何判斷一個文件夾下是否存在某個文件?
1.File testFile = new File(testFilePath)
;if(!testFile .exists()){ testFile.mkdirs(); System.out.println("測試文件夾不存在");
}2.File testFile = new File(testFilePath)
;if(!testFile .exists()){ testFile.createNewFile(); System.out.println("測試文件不存在");}java中File類自帶一個檢測方法exists可以判斷文件或文件夾是否存在,一般與mkdirs方法(該方法相較于mkdir可以創(chuàng)建包括父級路徑,推薦使用該方法)或者createNewFile方法合作使用。1,如果路徑不存在,就創(chuàng)建該路徑2,如果文件不存在,就新建該文件