зеркало из https://github.com/microsoft/docker.git
17 строки
295 B
Go
17 строки
295 B
Go
// +build !linux !amd64
|
|
|
|
package docker
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
func CopyFile(dstFile, srcFile *os.File) error {
|
|
// No BTRFS reflink suppport, Fall back to normal copy
|
|
|
|
// FIXME: Check the return of Copy and compare with dstFile.Stat().Size
|
|
_, err := io.Copy(dstFile, srcFile)
|
|
return err
|
|
}
|