Skip to content

Instantly share code, notes, and snippets.

@chiiph
Created December 26, 2012 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chiiph/4382823 to your computer and use it in GitHub Desktop.
Save chiiph/4382823 to your computer and use it in GitHub Desktop.
Defer example in Go
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