Here you can find the source of fileExists(String filepath)
Parameter | Description |
---|---|
string | path |
public static boolean fileExists(String filepath)
//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; } }