Android File Exist exists(File file)

Here you can find the source of exists(File file)

Description

exists

Declaration

public static boolean exists(File file) 

Method Source Code

//package com.java2s;

import java.io.File;

public class Main {
    public static boolean exists(String fileName) {
        return exists(new File(fileName));
    }/*  w  ww  . j  ava 2 s .  c  om*/

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

Related

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