-
-
Save parzibyte/8d7f38b82d7275e635f1838179759276 to your computer and use it in GitHub Desktop.
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 descargarArchivoDeInternet(url string) (string, error) { | |
respuesta, err := http.Get(url) | |
if err != nil { | |
return "", err | |
} | |
defer respuesta.Body.Close() | |
nombreArchivoSalida := fmt.Sprintf("%s.%s", xid.New().String(), extensionImagenSegunContentType(respuesta.Header.Get("Content-Type"))) | |
archivoSalida, err := os.Create(nombreArchivoSalida) | |
if err != nil { | |
return "", err | |
} | |
defer archivoSalida.Close() | |
_, err = io.Copy(archivoSalida, respuesta.Body) | |
return nombreArchivoSalida, err | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment