Android File Exist exists(String fileName)

Here you can find the source of exists(String fileName)

Description

exists

Declaration

public static boolean exists(String fileName) 

Method Source Code

//package com.java2s;

import java.io.File;

public class Main {
    public static boolean exists(String fileName) {
        return exists(new File(fileName));
    }/*from  w ww.  ja  v  a  2  s  .  co m*/

    public static boolean exists(File file) {
        return file.exists();
    }
}

Related

  1. checkFileExist(String path)
  2. exist(String filePath)
  3. existFile(String folder)
  4. exists(File file)
  5. exists(String fileName)
  6. exists(String fileName)
  7. exists(String parent, String fileName)
  8. exists(String path)
  9. exists(String path)