Whether the file or directory denoted by this abstract pathname exists

ReturnMethodSummary
booleanexists()Tests whether the file or directory denoted by this abstract pathname exists.

import java.io.File;

public class Main {

  public static void main(String[] args) {
    File aFile = new File("c:/");
    System.out.println(aFile.exists());

  }
}

The output:


true
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.