copy - 递归地复制目录 Posted on 2022-08-19 copy otiai10/copy 是一个可以让你递归地复制目录的库。 安装 1go get github.com/otiai10/copy 示例 1234567891011package mainimport ( "fmt" cp "github.com/otiai10/copy")func main() { err := cp.Copy("your/src", "your/dest") fmt.Println(err) // nil}