java判斷檔案是否存在:
/** * 判断文件是否存在 * * @Title: isExcite * @param @param filePath * @param @return * @return boolean 返回类型 * @throws */ public static boolean isExcite(String filePath) { File file = new File(filePath); // 如果文件夹不存在则创建 if (!file.exists() && !file.isDirectory()) { return false; } else { return true; } }
exists()
public boolean exists()測試此抽象路徑名稱表示的檔案或目錄是否存在。
拋出:SecurityException如果存在安全管理器,且其SecurityManager.checkRead(java.lang.String)方法拒絕對檔案或目錄進行寫入存取。
isDirectory() 這個用來測試該物件存在且是一個目錄文件,簡單說該物件是一個資料夾,且不是空資料夾就回傳true,否則傳回false。
更多java知識請關注java基礎教學欄。
以上是java判斷指定文件是否存在的方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!