Android File Exist isFileExist(String filepath)

Here you can find the source of isFileExist(String filepath)

Description

is File Exist

Declaration

public static File isFileExist(String filepath) 

Method Source Code

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

public class Main {
    public static File isFileExist(String filepath) {

        File mfile = new File(filepath);
        if (mfile.exists())
            return mfile;
        else/*  w  w  w  .  ja v  a2 s. c o  m*/
            return null;
    }
}

Related

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