I am trying to save contents in file but first I want to search either file does exist or not. But the code I have written, every time it is returning true.
String fileName=FNameTextField.getText();
File file=new File(fileName);
if(file.exists()&& !file.isDirectory()) {
// It returns true if File or directory does exist
System.out.println("the file or directory you are searching does exist : " );
}else{
// It returns true if File or directory not exists
System.out.println("the file or directory you are searching does not exist : " );
}
Thanks.


java.io.Filein favor of the new API introduced in Java 7. In particular, here is the relevant Sun Java Trail tutorial for solving this problem. The method of importance is Files.exists. – oldrinb Aug 4 '12 at 5:34