Java File Exist fileExists(String filepath)

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

Description

Utility to see if path for file exists and is a file

License

Apache License

Parameter

Parameter Description
string path

Declaration

public static boolean fileExists(String filepath) 

Method Source Code

//package com.java2s;
/**************************************************************************************
Copyright 2015 Applied Research Associates, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the License
at:/*w  w w .j  a  v a2  s. com*/
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
**************************************************************************************/

import java.io.File;

public class Main {
    /**
     * Utility to see if path for file exists and is a file 
     * @param string path
     * @return
     */
    public static boolean fileExists(String filepath) {
        File file = new File(filepath);
        return fileExists(file);
    }

    /**
     * Utility to see if path for file exists and is a file 
     * @param file
     * @return
     */
    public static boolean fileExists(File f) {
        if (f.exists())
            return f.isFile();
        return false;
    }
}

Related

  1. fileExists(String filename)
  2. fileExists(String filename)
  3. FileExists(String filename)
  4. fileExists(String fileName)
  5. fileExists(String fileName)
  6. fileExists(String filePath)
  7. FileExists(String filePath)
  8. fileExists(String filePathString)
  9. fileExists(String fName)