github.com/vrothberg/storage@v1.12.13/drivers/vfs/copy_linux.go (about) 1 package vfs 2 3 import "github.com/containers/storage/drivers/copy" 4 5 func dirCopy(srcDir, dstDir string) error { 6 return copy.DirCopy(srcDir, dstDir, copy.Content, false) 7 }