Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 18 down vote accepted
// exists returns whether the given file or directory exists or not
func exists(path string) (bool, error) {
    _, err := os.Stat(path)
    if err == nil { return true, nil }
    if os.IsNotExist(err) { return false, nil }
    return false, err
}

Edited to add error handling.

share|improve this answer
1  
It looks like 'exception programming' to me. Is there any resource that justify this kind of code as an official #golang paradigm? – Olivier Amblet Nov 23 '12 at 22:03
@OlivierAmblet Sorry for the late response. What do you mean by “this kind of code”? Checking for err or what? – Mostafa Mar 15 at 19:15

You can use this :

if _, err := os.Stat("./conf/app.ini"); err != nil {
    if os.IsNotExist(err) {
        // file does not exist
    } else {
        // other error
    }
}

See : http://golang.org/pkg/os/#IsNotExist

share|improve this answer
This is better than the accepted answer but is the else clause really necessary? – Sergey Koulikov Jun 11 at 3:25
1  
@SergeyKoulikov There could be other errors, like a permission one. – dystroy Jun 11 at 5:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.