Windows命令从URL下载文件

时间:2017-05-19 08:54:32

标签: linux windows unix cmd powershell-v2.0

我想使用url中的windows命令下载文件。我想知道Windows中是否有像 wget 这样的命令。

谢谢

1 个答案:

答案 0 :(得分:0)

我认为您可以使用此PowerShell脚本:

$client = new-object System.Net.WebClient
$client.DownloadFile(“URL of file”,“Where save”)

按网址替换文件的网址,例如http://example.com/icon.png

在PC中按路径保存,例如C:\ Users \ User \ Desktop \ icon.png

前:

$client = new-object System.Net.WebClient
$client.DownloadFile("https://example.com/data.txt","D:\FileDownloaded.txt");

(抱歉我的英文,谢谢)