📌  相关文章
📜  golang 检查文件是否存在 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:33.701000             🧑  作者: Mango

代码示例2
file, err := os.OpenFile(...)
if errors.Is(err, os.ErrNotExist) {
    // handle the case where the file doesn't exist
}