Android File Exist exists(String parent, String fileName)

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

Description

exists

License

Apache License

Declaration

public static boolean exists(String parent, String fileName) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.io.*;

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

    public static boolean exists(String fileName) {
        return new File(fileName).exists();
    }
}

Related

  1. existFile(String folder)
  2. exists(File file)
  3. exists(String fileName)
  4. exists(String fileName)
  5. exists(String fileName)
  6. exists(String path)
  7. exists(String path)
  8. fileExists(String path)
  9. fileOrPathExists(String path)