All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xxl.mathematica.io.FileExistsQ Maven / Gradle / Ivy

package xxl.mathematica.io;

import java.io.File;

/**
 * 文件是否存在
 */
public class FileExistsQ {
    /**
     * 文件是否存在
     *
     * @return
     */
    public static boolean fileExistsQ(String file) {
        return new File(file).exists();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy