1
0
peilaus alkaen https://github.com/therootcompany/vfscopy synced 2025-07-05 10:46:34 +00:00
vfscopy/README.md
2020-10-23 14:29:09 -06:00

349 B

vfscopy

Copy a Virtual FileSystem, such as http.FileSystem, recursively to a native file system destination.

httpfs := http.Dir("/tmp/public/")
vfs := vfscopy.NewVFS(httpfs)

if err := Copy(vfs, ".", "/tmp/dst/"); nil != err {
    fmt.Fprintf(os.Stderr, "couldn't copy vfs: %v\n", err)
}