Created
December 26, 2012 20:14
-
-
Save chiiph/4382823 to your computer and use it in GitHub Desktop.
Defer example in Go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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