Skip to content

Instantly share code, notes, and snippets.

@rssh
Created July 7, 2012 09:01
Show Gist options
  • Save rssh/3065558 to your computer and use it in GitHub Desktop.
Save rssh/3065558 to your computer and use it in GitHub Desktop.
dou - Иллюстрация к колонке от 2012-07-07 №4
func CopyFile(dstName, srcName string) (written int64, err error) {
src, err := os.Open(srcName)
if err != nil {
return
}
defer src.Close()
dst, err := os.Create(dstName)
if err != nil {
return
}
defer dst.Close()
return io.Copy(dst, src)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment