Android File Exist isFileExists(String filename)

Here you can find the source of isFileExists(String filename)

Description

is File Exists

Declaration

public static boolean isFileExists(String filename) 

Method Source Code

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

public class Main {
    public static boolean isFileExists(String filename) {
        File file = new File(filename);
        return file.exists();
    }/*from   ww w  .j a v a  2 s .  c  o  m*/
}

Related

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