Skip to content

Instantly share code, notes, and snippets.

@Lyubaev
Created September 13, 2015 15:07
Show Gist options
  • Save Lyubaev/376ab9327b9587dbe12e to your computer and use it in GitHub Desktop.
Save Lyubaev/376ab9327b9587dbe12e to your computer and use it in GitHub Desktop.
func downloadFromUrl(url string) {
tokens := strings.Split(url, "/")
fileName := tokens[len(tokens)-1]
fmt.Println("Downloading", url, "to", fileName)
// TODO: check file existence first with io.IsExist
output, err := os.Create(fileName)
if err != nil {
fmt.Println("Error while creating", fileName, "-", err)
return
}
defer output.Close()
response, err := http.Get(url)
if err != nil {
fmt.Println("Error while downloading", url, "-", err)
return
}
defer response.Body.Close()
n, err := io.Copy(output, response.Body)
if err != nil {
fmt.Println("Error while downloading", url, "-", err)
return
}
fmt.Println(n, "bytes downloaded.")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment