I want to check the existence of file ./conf/app.ini in my golang code.
But I can't find a good way to do that.
I know there is a method of File in Java: public boolean exists() , Which returns true if the file or directory exists.
But how to do it in golang?