参考https://pandaychen.github.io/2020/04/09/A-GOLANG-PIPELINE/https://go.dev/blog/pipelines代码 package main import ( "crypto/md5" "fmt" "log" "os" "path/filepath" ) type result struct { path string sum [md5.Size]byte } type fileData struct { ...