golang 报错The system cannot find the path specified. [mkdir C:/xx/yy/
golang 报错The system cannot find the path specified. [mkdir C:/xx/yy/]
如果创建目录的时候报错这个,建议你先排查一下如下地方:
err := os.Mkdir(path, perm)
如果是使用以上这个方法,只能创建单级目录
如果要创建诸如:xx/yy、xx/yy/zz、......
请输入如下方法
err := os.MkdirAll(path, perm)
OK!问题解决!不会的给我私信!
觉得有帮助的可以关注一波!经常分享编程踩坑经验!