摘要: 1 package main 2 3 import ( 4 "fmt" 5 "os" 6 ) 7 8 //判断文件夹是否存在 9 func PathExists(path string) (bool, error){ 10 _, err := os.Stat(path) 11 if err == n 阅读全文
posted @ 2020-07-16 09:36 胸怀丶若谷 阅读(2630) 评论(0) 推荐(0) 编辑