[Golang]解决 os.Mkdir的时候出现 The system cannot find the path specified

2022-03-30 12:44:46 浏览数 (1)

这是因为创建的目录是多级目录

创建多级目录应该使用

代码语言:javascript复制
os.MkdirAll(fildDir, os.ModePerm)

就可以解决

0 人点赞