簡體   English   中英

使用 Powershell 從 Internet 下載文件並取得進展

[英]Downloading files from the Internet using Powershell with progress

我一直在研究 powershell 腳本,該腳本使用 a.txt 文件從 tinyurls 下載多個文件。 感謝這個論壇上的人,我已經成功地使用Jobs來同時實現這一點。 該項目需要下載一些相當大的文件,並且使用當前方法沒有進度指示器。 我想一些用戶可能會認為程序死了。 尋找一種方法給出它在下載中的位置。 這是我想出的,但我不知道如何將 pipe 信息返回到控制台。 有什么建議么?

#Checks to see if NT-Download folder is on the Desktop, if not found, creates it
$DOCDIR = [Environment]::GetFolderPath("Desktop")
$TARGETDIR = "$DOCDIR\NT-Download"
if(!(Test-Path -Path $TARGETDIR )){
    New-Item -ItemType directory -Path $TARGETDIR
}

$filepaths = Resolve-Path "files.txt"

Get-Content "$filepaths" | Foreach {
Start-Job {
    function Save-TinyUrlFile
    {
        PARAM (
            $TinyUrl,
            $DestinationFolder
        )

        $response = Invoke-WebRequest -Uri $TinyUrl
        $filename = [System.IO.Path]::GetFileName($response.BaseResponse.ResponseUri.OriginalString)
        $filepath = [System.IO.Path]::Combine($DestinationFolder, $filename)
        $totalLength = [System.Math]::Floor($response.get_ContentLength()/1024) 
        $responseStream = $response.GetResponseStream()
        $buffer = new-object byte[] 10KB
        $count = $responseStream.Read($buffer,0,$buffer.length) 
        $downloadedBytes = $count
        try
        {
            $filestream = [System.IO.File]::Create($filepath)
            $response.RawContentStream.WriteTo($filestream)
            $filestream.Close()
            while ($count -gt 0) 
            { 
                [System.Console]::CursorLeft = 0 
                [System.Console]::Write("Downloaded {0}K of {1}K", [System.Math]::Floor($downloadedBytes/1024), $totalLength) 
                $targetStream.Write($buffer, 0, $count) 
                $count = $responseStream.Read($buffer,0,$buffer.length) 
                $downloadedBytes = $downloadedBytes + $count 
            } 
                         "`nFinished Download" 
            $targetStream.Flush()
            $targetStream.Close() 
            $targetStream.Dispose() 
            $responseStream.Dispose() 
        }
        finally
        {
            if ($filestream)
            {
                $filestream.Dispose();
            }
        }
    }

    Save-TinyUrlFile -TinyUrl $args[0] -DestinationFolder $args[1]
} -ArgumentList $_, "$TARGETDIR"

}

看看Write-Progress

PS C:> for($ i = 1; $ i -le 100; $ i ++){寫進度-活動“正在搜索”-狀態“ $ i%完成:” -percentcomplete $ i;}

更簡單的方法:依靠 Bits:

Start-BitsTransfer -Source $tinyUrl

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM