web123456

Java determines whether the file exists

    public static boolean  fileExists(String plainFilePath)
    {
        File file=new File(plainFilePath);
        if(!())
        {
            return false;
        }
        else
        {
                return true;
        }
    }