Android File Exist fileExists(String path)

Here you can find the source of fileExists(String path)

Description

file Exists

License

Open Source License

Declaration

public static Boolean fileExists(String path) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.io.File;

public class Main {
    public static Boolean fileExists(String path) {
        return new File(path).isFile();
    }//  ww  w .  j  a  va  2  s .  c o  m
}

Related

  1. exists(String fileName)
  2. exists(String fileName)
  3. exists(String parent, String fileName)
  4. exists(String path)
  5. exists(String path)
  6. fileOrPathExists(String path)
  7. getExistingFile(String path, boolean mustBeReadable, boolean mustBeWritable, boolean isDirectory)
  8. isExist(String path)
  9. isFileExist(String fileName)