Advertisement
thenewboston

Java Programming Tutorial - 78 - File Class

Aug 22nd, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. import java.io.File;
  2.  
  3. class FirstFile {
  4.    public static void main(String args[ ]) {
  5.       File f = new File("/home/asus/5.jpg");
  6.       if(f.exists())
  7.          System.out.println(f.getName() + " exists!");
  8.       else
  9.          System.out.println("There is no such file.");
  10.    }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement