Android File Exist isExist(String absPath)

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

Description

is Exist

Declaration

public static Boolean isExist(String absPath) 

Method Source Code

//package com.java2s;
import java.io.File;

public class Main {
    public static Boolean isExist(String absPath) {
        File f = new File(absPath);
        return f.exists();
    }/*from www.j  a  va 2 s  . c o m*/
}

Related

  1. isFileExist(String path, String fileName)
  2. isFileExist(String pathAndFileName)
  3. judgeFileExist(String p_sFilePath)
  4. isExistFile(String name)
  5. isFileExists(String filename)
  6. isExistFile(String name)
  7. fileExists(String filePath)
  8. fileExists(String fname)
  9. fileExists(String path)