📌  相关文章
📜  如果文件存在则去 - Go 编程语言代码示例

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

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