Java File Exist FileExists(String filename)

Here you can find the source of FileExists(String filename)

Description

Test if a file exists...

License

Open Source License

Parameter

Parameter Description
filename a parameter

Return

true if file Exists

Declaration

public static boolean FileExists(String filename) 

Method Source Code

//package com.java2s;
/*//from ww  w  . jav  a  2 s.co  m
*  Armadillo Workflow Platform v1.0
*  A simple pipeline system for phylogenetic analysis
*
*  Copyright (C) 2009-2011  Etienne Lord, Mickael Leclercq
*
*  This program is free software: you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation, either version 3 of the License, or
*  (at your option) any later version.
*
*  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  You should have received a copy of the GNU General Public License
*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

import java.io.File;

public class Main {
    /**
     * Test if a file exists...
     * @param filename
     * @return true if file Exists
     */
    public static boolean FileExists(String filename) {
        File f = new File(filename);
        if (f == null || f.isDirectory())
            return false;
        return f.exists();
    }
}

Related

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