Android File Exist fileExists(String filePath)

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

Description

file Exists

License

Open Source License

Declaration

public static boolean fileExists(String filePath) 

Method Source Code

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

import java.io.File;

public class Main {

    public static boolean fileExists(String filePath) {
        File file = new File(filePath);

        return file.exists();
    }/*from   w  w  w.  ja v a 2 s  . c  om*/
}

Related

  1. judgeFileExist(String p_sFilePath)
  2. isExistFile(String name)
  3. isFileExists(String filename)
  4. isExist(String absPath)
  5. isExistFile(String name)
  6. fileExists(String fname)
  7. fileExists(String path)
  8. isFileExist(String filepath)
  9. isFileNotExist(String filepath)