我正在尝试编写执行以下操作的PowerShell脚本:
是否可以不下载而获取在线文件的文件大小?我尝试使用.length,但是没有用。 (我是PowerShell的新手)
PS脚本:
$localpath = "C:\Users\USERNAME\Desktop\test.csv"
If(Test-Path -Path $localpath)
{
#Exist, check for an updated version
$localFileSize = (Get-Item $localpath).length
$onlineFileSize = (Get-Item 'test.com/test.txt').length
if($onlineFileSize -gt $localFileSize)
{
$url = "test.com/test.txt"
$downloadFile = "C:\Users\USERNAME\Desktop\test.csv"
(New-Object System.Net.WebClient).DownloadFile($url, $downloadFile)
}
} else
{
#Does not exist, download the file
$url = "test.com/test.txt"
$downloadFile = "C:\Users\USERNAME\Desktop\test.csv"
(New-Object System.Net.WebClient).DownloadFile($url, $downloadFile)
}
答案 0 :(得分:2)
您可以使用Invoke-WebRequest
和HEAD
方法来获取标题,而无需下载任何内容。如果您请求的资源长度已知,那么您将获得一个Content-Length
标头,您可以使用该标头,例如
(Invoke-WebRequest $url -Method Head).Headers.'Content-Length'