国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > PowerShell > 正文

PowerShell小技巧之實現文件下載(類wget)

2020-05-30 20:17:22
字體:
來源:轉載
供稿:網友

對Linux熟悉的讀者可能會對Linux通過wget下載文件有印象,這個工具功能很強大,在.NET環境下提到下載文件大多數人熟悉的是通過System.Net.WebClient進行下載,這個程序集能實現下載的功能,但是有缺陷,如果碰上類似于…/scripts/?dl=417這類的下載鏈接將無法正確識別文件名,下載的文件通常會被命名為dl=417這樣古怪的名字,其實對應的文件名是在訪問這個鏈接返回結果的HTTP頭中包含的。事實上微軟也提供了避免這些缺陷的程序集System.Net.HttpWebRequest 和 HttpWebResponse,本文將會使用這兩個程序集來實現PowerShell版wget的功能。

代碼不怎么復雜,基本上就是創建HttpWebRequest對象,設定UserAgent和CookieContainer以免在遇到設置防盜鏈的服務器出現無法下載的情況。然后通過HttpWebRequest對象的GetResponse()方法從http頭中獲取目標文件的大小以及文件名,以便能在下載到文件時提示當前下載進度,在下載完文件后,列出當前目錄下對應的文件。代碼不復雜,有任何疑問的讀者可以留言給我,進行交流,下面上代碼:

代碼如下:
 =====文件名:Get-WebFile.ps1=====
function Get-WebFile {
<# Author:fuhj(powershell#live.cn ,http://fuhaijun.com)
   Downloads a file or page from the web
.Example
  Get-WebFile http://mirrors.cnnic.cn/apache/couchdb/binary/win/1.4.0/setup-couchdb-1.4.0_R16B01.exe
  Downloads the latest version of this file to the current directory
#>

[CmdletBinding(DefaultParameterSetName="NoCredentials")]
   param(
      #  The URL of the file/page to download
      [Parameter(Mandatory=$true,Position=0)]
      [System.Uri][Alias("Url")]$Uri # = (Read-Host "The URL to download")
   ,
      #  A Path to save the downloaded content.
      [string]$FileName
   ,
      #  Leave the file unblocked instead of blocked
      [Switch]$Unblocked
   ,
      #  Rather than saving the downloaded content to a file, output it. 
      #  This is for text documents like web pages and rss feeds, and allows you to avoid temporarily caching the text in a file.
      [switch]$Passthru
   ,
      #  Supresses the Write-Progress during download
      [switch]$Quiet
   ,
      #  The name of a variable to store the session (cookies) in
      [String]$SessionVariableName
   ,
      #  Text to include at the front of the UserAgent string

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 福泉市| 招远市| 布尔津县| 浦县| 太湖县| 镇江市| 阜新| 威海市| 马公市| 襄汾县| 蒙山县| 永善县| 海门市| 沂水县| 方城县| 屏东县| 黑山县| 双辽市| 昌江| 扶风县| 轮台县| 乐业县| 康平县| 赫章县| 福州市| 四子王旗| 容城县| 茶陵县| 清苑县| 当阳市| 蓬溪县| 隆安县| 青海省| 延津县| 始兴县| 鄂州市| 郁南县| 奉节县| 额济纳旗| 绍兴市| 岱山县|