Android File Exist fileExists(String path)

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

Description

file Exists

Declaration

public static boolean fileExists(String path) 

Method Source Code

//package com.java2s;

import java.io.File;

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

Related

  1. isFileExists(String filename)
  2. isExist(String absPath)
  3. isExistFile(String name)
  4. fileExists(String filePath)
  5. fileExists(String fname)
  6. isFileExist(String filepath)
  7. isFileNotExist(String filepath)
  8. doesFileExist(String paramString)