Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I check whether a file exists, before openinging it for reading in Java? (equivalent of Perl's -e $filename).

The only similar question on SO dealt with writing the file and was thus answered using FileWriter which is obviously not applicable here.

If possible I'd prefer a real API call returning true/false as opposed to some "Call API to open a file and catch when it throws an exception which you check for 'no file' in text", but I can live with the latter.

share|improve this question

8 Answers

up vote 177 down vote accepted

Using java.io.File

File f = new File(filePathString);
if(f.exists()) { /* do something */ }
share|improve this answer
23  
Note that exists() will return true for directories, too! – Paul Lammertsma Nov 30 '09 at 15:05
6  
@Paul - that's fine, as the question explicitly asked for equivalent of Perl's -e which also is true for directories – DVK Dec 13 '10 at 15:36
3  
@PaulLammertsma, in this case could be: if(f.exists() && !f.isDirectory()) // ... – Andersson Melo Jan 2 '12 at 21:15
@PaulLammertsma - then how do we solve that problem ? – david blaine Dec 18 '12 at 2:06
@davidblaine Like Andersson shows, you can check if a File is a directory using isDirectory(). – Paul Lammertsma Dec 18 '12 at 8:38
show 1 more comment

I would recommend using isFile() instead of exists(). Most of the time you are looking to check if the path points to a file not only that it exists. Remember that exists() will return true if your path points to a directory.

new File("path/to/file.txt").isFile();

new File("C:/").exists() will return true but will not allow you to open and read from it as a file.

share|improve this answer
5  
+1 Very useful to know, thanks – James Goodwin Nov 29 '09 at 20:56
f.isFile() && f.canRead()
share|improve this answer
Does pearl's -e also ensure that the application "can read" the file? – Limited Atonement Jan 4 at 21:53

Use File.exists()

share|improve this answer

The Java API is really quite good. See this entry on the File class.

share|improve this answer

first hit for "java file exists" on google:

import java.io.*;

public class FileTest {
  public static void main(String args[]) {
    File f = new File(args[0]);
    System.out.println
      (f + (f.exists()? " is found " : " is missing "));
  }
}
share|improve this answer
10  
The API docs were on display in the bottom of a locked filing cabinet, stuck in a disused lavatory, with a sign on the door saying 'Beware of the Leopard'. – skaffman Nov 29 '09 at 20:42
There is no need to check if f != null before checking f.exists, if the new keyword fails it will generate an Exception. – Sean A.O. Harney Nov 29 '09 at 20:56
there's no check if f != null. f + (...) uses java.io.File.toString – just somebody Nov 30 '09 at 7:39
@just actually, it uses String.valueOf(), which handles nulls – GreenGiant Jan 14 at 19:55

It's also well worth getting familiar with Commons FileUtils http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html This has additional methods for managing files and often better than JDK.

share|improve this answer
3  
Way to not answer the question. I agree commons has a lot of useful stuff, but maybe we could take that one step further and provide an answer to the question the OP asked. – demongolem Dec 1 '11 at 16:31
He gave enough of an answer for me. – bulltorious Sep 5 '12 at 19:14

The problem with the answer

File f = new File(filePathString); 
if( f.exists() ) ....

is that this approach creates a new file if one doesn't exist (see the API).

What you really need to do is:

  1. separate your filePathString into component PATH (directory) and FNAME,
  2. open the directory,
  3. determine if your FNAME exists in the list of files of the directory. Something like this encapsulated in a method call:

    int indx = filePathString.lastIndexOf( File.separator );
    String path = filePathString.substring( 0, indx-1);
    String fname = filePathString.substring( indx+1 );
    File directory = new File( path );
    boolean found = false;
    for( File f : directory.listFiles() )
    {
       if( f.getName().equals( fname ) )
       {
           found = true;
           break;
       }
    } 
    return found;
    
share|improve this answer
4  
"creates a new file if one doesn't exist"... Not from what I read: docs.oracle.com/javase/7/docs/api/java/io/File.html#exists() – Chris Dail Feb 13 '12 at 19:31
import java.io.File; import java.util.UUID; public class FileExistsExample { public static void main(String[] args) { File tmp = new File(System.getProperty("java.io.tmpdir")); File file = new File(tmp, UUID.randomUUID().toString()); System.out.println("["+tmp.exists()+"] ["+file.exists()+"]"); } } – cyber-monk Feb 15 '12 at 21:15
it only creates a new instance of the java.io.File class, not an actual file – GreenGiant Jan 14 at 19:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.