github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/daemon/graphdriver/vfs/copy_linux.go (about) 1 package vfs // import "github.com/Prakhar-Agarwal-byte/moby/daemon/graphdriver/vfs" 2 3 import "github.com/Prakhar-Agarwal-byte/moby/daemon/graphdriver/copy" 4 5 func dirCopy(srcDir, dstDir string) error { 6 return copy.DirCopy(srcDir, dstDir, copy.Content, false) 7 }