io/ioutil has already been deprecated in golang 1.16, so replace all ioutil with io and os

This commit is contained in:
ahrtr
2021-10-30 06:41:02 +08:00
parent 2d0fa78f2f
commit fe95aa614c
96 changed files with 250 additions and 297 deletions

View File

@@ -19,8 +19,8 @@ package windows
import (
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
)
// downloadFile saves a remote URL to a local temp file, and returns its path.
@@ -32,7 +32,7 @@ func downloadFile(url string) (string, error) {
}
defer response.Body.Close()
tempFile, err := ioutil.TempFile("", "")
tempFile, err := os.CreateTemp("", "")
if err != nil {
return "", fmt.Errorf("unable to create temp file: %w", err)
}