package copy

import "github.com/dotcloud/docker/daemon/graphdriver/copy"

Index

Functions

func DirCopy

func DirCopy(srcDir, dstDir string, copyMode Mode, copyOpaqueXattrs bool) error

DirCopy copies or hardlinks the contents of one directory to another, properly handling soft links, "security.capability" and (optionally) "trusted.overlay.opaque" xattrs.

The copyOpaqueXattrs controls if "trusted.overlay.opaque" xattrs are copied. Passing false disables copying "trusted.overlay.opaque" xattrs.

Types

type Mode

type Mode int

Mode indicates whether to use hardlink or copy content

const (
	// Content creates a new file, and copies the content of the file
	Content Mode = iota
	// Hardlink creates a new hardlink to the existing file
	Hardlink
)

Source Files

copy.go

Version
v28.1.1+incompatible (latest)
Published
Apr 18, 2025
Platform
linux/amd64
Imports
12 packages
Last checked
8 minutes ago

Tools for package owners.