Android File Exist isExistFile(String name)

Here you can find the source of isExistFile(String name)

Description

is Exist File

Declaration

public static boolean isExistFile(String name) 

Method Source Code

//package com.java2s;

import java.io.File;

public class Main {
    public static boolean isExistFile(String name) {
        File file = new File(name);
        return file.exists();
    }// w w w  .ja  v  a2  s. c  o m
}

Related

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