Zet - How do you check if a file exists in bash?

How do you check if a file exists in bash?

if test -f "$FILE"; then
    echo "$FILE exists."
fi

#bash