mirror of https://github.com/pikami/tiktok-dl.git
32 lines
488 B
Go
32 lines
488 B
Go
package utils
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
)
|
|
|
|
// DownloadFile - Downloads content from `url` and stores it in `outputPath`
|
|
func DownloadFile(outputPath string, url string) {
|
|
// Get the data
|
|
resp, err := http.Get(url)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
// Create the file
|
|
out, err := os.Create(outputPath)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer out.Close()
|
|
|
|
// Write the body to file
|
|
_, err = io.Copy(out, resp.Body)
|
|
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|