Android File Exist isExist(String path)

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

Description

is Exist

License

Apache License

Declaration

public static boolean isExist(String path) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.io.File;

public class Main {

    public static boolean isExist(String path) {
        return new File(path).exists();
    }/*  w w w. j  a  v  a 2s.c  om*/
}

Related

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