github.com/demonoid81/moby@v0.0.0-20200517203328-62dd8e17c460/daemon/graphdriver/vfs/copy_linux.go (about)

     1  package vfs // import "github.com/demonoid81/moby/daemon/graphdriver/vfs"
     2  
     3  import "github.com/demonoid81/moby/daemon/graphdriver/copy"
     4  
     5  func dirCopy(srcDir, dstDir string) error {
     6  	return copy.DirCopy(srcDir, dstDir, copy.Content, false)
     7  }