Home>Article>Backend Development> How to read whether a file exists in golang
How does golang read whether a file exists?
The method for golang to determine whether a file or folder exists is to useos.Stat( )Judge the error value returned by the function:
Recommended:navicat tutorial
1. If the error returned is nil, it means that the file or folder exists
2. If the error type returned is true using os.IsNotExist(), it means the file or folder does not exist.
3. If the error type returned is of other types, it is not sure whether it exists. There are
func PathExists(path string) (bool, error) { _, err := os.Stat(path) if err == nil { return true, nil } if os.IsNotExist(err) { return false, nil } return false, err }
for more related tutorials, please pay attention to thedocker tutorialcolumn on the PHP Chinese website.
The above is the detailed content of How to read whether a file exists in golang. For more information, please follow other related articles on the PHP Chinese website!