PowerShell 技能连载 - 查看下载文件的大小

当您用 PowerShell 从 internet 下载文件,您可能会想知道下载需要多少时间。您可以检查已下载的数据大小,而且在知道总下载尺寸的情况下可以计算进度百分比。

以下是得到文件尺寸的快速方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function Get-DownloadSize
{
[CmdletBinding()]
param
(
[Parameter(Mandatory,ValueFromPipeline)]
[String]
$Url
)

process
{
$webRequest = [System.Net.WebRequest]::Create($Url)
$response = $webRequest.GetResponse()
$response.ContentLength
$response.Dispose()
}
}

以下是一个示例:

1
2
3
PS> "https://github.com/PowerShell/PowerShell/releases/download/v6.2.1/PowerShell-6.2.1-win-x64.zip" | Get-DownloadSize

58716786

PowerShell 技能连载 - 查看下载文件的大小

http://blog.vichamp.com/2019/06/07/finding-size-of-download/

作者

吴波

发布于

2019-06-07

更新于

2022-07-06

许可协议

评论