为了账号安全,请及时绑定邮箱和手机立即绑定

当没有这样的文件返回 err 为 nil 时如何使用 os.Open

当没有这样的文件返回 err 为 nil 时如何使用 os.Open

Go
叮当猫咪 2023-07-26 13:14:48
package mainimport (    "fmt"    "os")func main() {    f := "D:\\cron"    fmt.Println(os.Stat(f))    fmt.Println(os.Open(f))    f = "D:\\con"    fmt.Println(os.Stat(f))    fmt.Println(os.Open(f))}result:<nil> CreateFile D:\cron: The system cannot find the file specified.<nil> open D:\cron: The system cannot find the file specified.<nil> CreateFile D:\con: The parameter is incorrect.&{0xc000086a00} <nil>我认为当文件不存在时,os.Open 应该返回 err != nil但我想知道为什么“D:\con”返回 err == nil
查看完整描述

1 回答

?
陪伴而非守候

TA贡献1757条经验 获得超8个赞

您使用 Windows 吗?“con”是保留文件名,是 DOS 时代的遗物。



查看完整回答
反对 回复 2023-07-26
  • 1 回答
  • 0 关注
  • 95 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信