rss-dl/fileio/downloader.go

34 lines
484 B
Go
Raw Normal View History

2019-04-17 20:26:44 +01:00
package fileio
import (
"io"
"net/http"
"os"
)
// DownloadFile - Download file and store it
func DownloadFile(outputFilename string, url string) error {
2019-04-17 20:26:44 +01:00
// Get the data
resp, err := http.Get(url)
if err != nil {
return err
2019-04-17 20:26:44 +01:00
}
defer resp.Body.Close()
// Create the file
out, err := os.Create(outputFilename)
if err != nil {
return err
2019-04-17 20:26:44 +01:00
}
defer out.Close()
// Write the body to file
_, err = io.Copy(out, resp.Body)
if err != nil {
return err
2019-04-17 20:26:44 +01:00
}
return nil
2019-04-17 20:26:44 +01:00
}