摘要: package main import ( "fmt" "io/ioutil" ) func main() { dirName := "D:\\tmp\\20220314" //fmt.Println(dirName) res := FileList(dirName, 0) for _, file 阅读全文
posted @ 2022-03-16 14:50 Young_Mo 阅读(340) 评论(0) 推荐(0) 编辑
摘要: package main import ( "encoding/csv" "fmt" "os" "unsafe" ) func readCsv(fPath string) (ret []map[string]string) { file, err := os.Open(fPath) if err ! 阅读全文
posted @ 2022-03-16 14:49 Young_Mo 阅读(30) 评论(0) 推荐(0) 编辑