Skip to content
On this page

Home > @taiyuuki/utils > download_by_url

download_by_url() function

此函数使用可选文件名从给定的 URL 下载文件。

Signature:

typescript
declare function download_by_url(URL: string, fileName?: string): void;
declare function download_by_url(URL: string, fileName?: string): void;

Parameters

ParameterTypeDescription
URLstringURL参数是一个字符串,表示需要下载的文件的URL。
fileNamestring(Optional) fileName 参数是一个字符串,指定要下载的文件的名称。如果没有为 fileName 提供值,该函数将生成一个随机 UUID 字符串作为文件名。

Returns:

void

Released under the MIT License.