How to get whether a file in a directory exists in golang

Release: 2020-03-12 13:23:54
Original
1663 people have browsed it

How to get whether a file in a directory exists in golang

The way Golang determines whether a file or folder exists is to use the error value returned by the os.Stat() function to determine:

If the returned error is nil, Indicates that the file or folder exists

If the returned error type is judged to be true using os.IsNotExist(), it indicates that the file or folder does not exist

If the returned error is of other types, it does not Determine whether it exists

Determine whether the given path file/folder exists:

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
}
Copy after login

For more go language knowledge, please pay attention to the php Chinese websitego language tutorial Column.

The above is the detailed content of How to get whether a file in a directory exists in golang. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template