0
這是我試過的代碼。但即使文件存在,這也會返回錯誤。變量FilePath和FileName從UI獲取。如果目錄中存在文件名,則替換
File exportFile = new File("\""+FilePath + "\\"+ FileName+"\"");
boolean exists = exportFile.exists();
if (!exists) {
System.out.println("File does not exists");
}
else{
System.out.println("File exists.");
}
這樣做的正確方法是什麼?順便說一句,我如何提示用戶替換或重命名文件名?
這是文件的完整路徑嗎? –
是的。如果我選擇桌面,它將返回C:\ Users \ Gapchoos \ Desktop – Gapchoos
從路徑的開始和結尾刪除多餘的雙引號..在第一行中..您的路徑已經是一個字符串,不需要將其包含在額外的引號內.. –