Android File Exist fileOrPathExists(String path)

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

Description

file Or Path Exists

License

Open Source License

Declaration

public static Boolean fileOrPathExists(String path) 

Method Source Code

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

import java.io.File;

public class Main {
    public static Boolean fileOrPathExists(String path) {
        File f = new File(path);
        return f.exists();
    }/* w w  w.ja  va2  s  . com*/
}

Related

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