Android File Exist fileExists(String fname)

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

Description

file Exists

Declaration

public static boolean fileExists(String fname) 

Method Source Code

//package com.java2s;

import java.io.File;

public class Main {
    public static boolean fileExists(String fname) {
        return new File(fname).exists();
    }//from   w  w  w  .  java  2 s.c  om
}

Related

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