0 / 60 seg.

What does the following Java code snippet do?

if (! (new File("example.txt")).exists() ) { 
    System.err.println("File example.txt not found");
} else { 
    // File exists
}