在 Go 中检查文件或目录是否存在
检查文件或目录是否存在是编程中的常见任务。在 Go 中,有几种方法可以解决这个问题。
一种方法是使用 os.Stat() 函数。该函数返回一个 FileInfo 对象,其中包含有关文件或目录的信息,包括它是否存在。以下代码显示如何使用 os.Stat() 检查文件或目录是否存在:
import "os" func exists(path string) bool { if _, err := os.Stat(path); err != nil { if os.IsNotExist(err) { return false } return false } return true }
另一种方法是使用带有 O_RDONLY 标志的 Open() 函数。该标志以只读模式打开文件或目录,并返回一个 os.File 对象。如果文件或目录不存在,该函数将返回错误。以下代码展示了如何使用 Open() 检查文件或目录是否存在:
import "os" func exists(path string) bool { f, err := os.OpenFile(path, os.O_RDONLY, 0666) if err != nil { if err == os.ErrNotExist { return false } return false } f.Close() return true }
以上是如何在 Go 中检查文件或目录是否存在?的详细内容。更多信息请关注PHP中文网其他相关文章!