📌  相关文章
📜  powershell 从 api url 下载文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:25.093000             🧑  作者: Mango

代码示例2
# Source file location
$source = 'http://speedtest.tele2.net/10MB.zip'
# Destination to save the file
$destination = 'c:\dload\10MB.zip'
#Download the file
Invoke-WebRequest -Uri $source -OutFile $destination