- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
Download và Giải nén tập tin File sử dụng Powershell
Xin chào các bạn, bài viết hôm nay mình sẽ hướng dẫn các bạn cách Download và giải nén tập tin File với Power Shell trong Windows.
[POWER SHELL] DOWNLOAD AND EXTRACT FILE RAR
Mình ví dụ, công việc bạn muốn thực hiện như sau:
Bước 1: Mình download tập tin file Rar từ Internet về địa chỉ Local ở máy mình.
Bước 2: Giải nén tập tin File đó ra ở đường dẫn mình chỉ định.
Bước 3: Xóa tập tin vừa download
Thay vì, các bạn thao tác bằng tay thủ công để download và giải nén, các bạn có thể viết thành một Script Powershell để chỉ cần 1 nút nhấn Click là hoàn thành công việc trên.
Dưới đây là demo của mình tải File và giải nén file sử dụng Power Shell.
I. Download File (Tải dữ liệu File)
1.Tải file có hiển thị Progress Bar sử dụng lớp [System.Net.HttpWebRequest]
Với cách tải này trên Window Power Shell ISE thì chạy nhanh nếu bạn chạy Script thì truyền vào là SlientlyContunue nhé.
$ProgressPreference = 'Continue' hoặc SilentlyContinue
function Download-File($url, $targetFile)
{
$uri = New-Object "System.Uri" "$url"
$request = [System.Net.HttpWebRequest]::Create($uri)
$request.set_Timeout(15000) #15 second timeout
$response = $request.GetResponse()
$totalLength = [System.Math]::Floor($response.get_ContentLength()/1024)
$responseStream = $response.GetResponseStream()
$targetStream = New-Object -TypeName System.IO.FileStream -ArgumentList $targetFile, Create
$buffer = new-object byte[] 10KB
$count = $responseStream.Read($buffer,0,$buffer.length)
$downloadedBytes = $count
while ($count -gt 0)
{
$targetStream.Write($buffer, 0, $count)
$count = $responseStream.Read($buffer,0,$buffer.length)
$downloadedBytes = $downloadedBytes + $count
Write-Progress -activity "Downloading file '$($url.split('/') | Select -Last 1)'" -status "Downloaded ($([System.Math]::Floor($downloadedBytes/1024))K of $($totalLength)K): " -PercentComplete ((([System.Math]::Floor($downloadedBytes/1024)) / $totalLength) * 100)
}
Write-Progress -activity "Finished downloading file '$($url.split('/') | Select -Last 1)'"
$targetStream.Flush()
$targetStream.Close()
$targetStream.Dispose()
$responseStream.Dispose()
}
Và khi muốn download file các bạn chỉ cần truyền tham số url và địa chỉ lưu trữ ở cú pháp dưới đây.
Download-File "https://down.freedesignfile.com/upload/downloads/2013/10/27/Colorful%20Fireworks%20Effect%20psd%20graphic.rar" "C:UsersNGUYENTHAODesktopNew folder (2)meomeo.rar"
2. Bạn sử dụng Module BitsTransfer để tải tập tin về
$url = "https://down.freedesignfile.com/upload/downloads/2013/10/27/Colorful%20Fireworks%20Effect%20psd%20graphic.rar"
$output = "C:UsersNGUYENTHAODesktopNew folder (2)meomeo.rar"
$temp = "C:UsersNGUYENTHAODesktopNew folder (2)"
$start_time = Get-Date
Import-Module BitsTransfer
Start-BitsTransfer -Source $url -Destination $output
#OR
Start-BitsTransfer -Source $url -Destination $output -Asynchronous
Write-Output "Time taken: $((Get-Date).Subtract($start_time).Seconds) second(s)"
Kết quả khi chạy lệnh dưới đây:
II. Giải nén tập tin File RAR sau khi download về.
Đầu tiên, các bạn tạo hàm Extract-WinRarFiles giải nén file:
Function Extract-WinRarFiles
{
[cmdletbinding()]
Param
(
[Parameter(HelpMessage='Enter the local path to the unrar.exe program')]
[ValidateNotNullOrEmpty()]
[ValidateScript({ Test-Path -Path $_ })]
[Alias('UREP')]
$UnRarExePath = "$env:ProgramFilesWinRARUnRAR.exe",
[Parameter(Mandatory = $true,
HelpMessage='Enter the local file path where the WinRar files are located that you would like to extract')]
[ValidateNotNullOrEmpty()]
[ValidateScript({ Test-Path -Path $_ })]
[Alias('URSP')]
$UnRarSourcePath,
[Parameter(Mandatory = $true,
HelpMessage='Enter the local file path location you wish to extract the content to')]
[ValidateNotNullOrEmpty()]
[ValidateScript({ Test-Path -Path $_ })]
[Alias('URTP')]
$UnRarTargetPath,
[Parameter(HelpMessage='Use this parameter to open the directory the extracted files are located in')]
[ValidateNotNullOrEmpty()]
[Alias('OTL')]
[switch]$OpenTargetLocation,
[Parameter(HelpMessage='Use this parameter to delete the original RAR files to help save disk space')]
[ValidateNotNullOrEmpty()]
[Alias('DSRF')]
[switch]$DeleteSourceRarFiles
)
Begin
{
$NewLine = "`r`n"
$RarFilePaths = (Get-ChildItem -Path $UnRarSourcePath -Recurse | Where-Object -FilterScript { $_.extension -eq '.rar' }).FullName
$RarFileSourceCount = $RarFilePaths.Count
}
Process
{
$NewLine
Write-Output -Verbose "Total RAR File Count: $RarFileSourceCount"
$NewLine
Write-Output -Verbose "Beginning extraction, please wait..."
Start-Sleep -Seconds 5
Foreach ($FilePath in $RarFilePaths)
{
&$UnRarExePath x -y $FilePath $UnRarTargetPath
}
$RarFileTargetCount = (Get-ChildItem -Path $UnRarTargetPath).Count
If ($RarFileTargetCount -eq $RarFileSourceCount)
{
Clear-Host
$NewLine
Write-Output -Verbose "$RarFileTargetCount RAR files have been extracted"
$NewLine
}
Else
{
$NewLine
Write-Warning -Message "$RarFileTargetCount out of $RarFileSourceCount have been extracted"
$NewLine
}
}
End
{
Switch ($PSBoundParameters.Keys)
{
{ $_ -contains 'OpenTargetLocation' }
{
$NewLine
Write-Output -Verbose 'Opening RAR target location...'
Start-Sleep -Seconds 5
Invoke-Item -Path $UnRarTargetPath
}
{ $_ -contains 'DeleteSourceRarFiles' }
{
$NewLine
Write-Output -Verbose 'Deleting source RAR files and the directory...'
Start-Sleep -Seconds 5
Remove-Item -Path $UnRarSourcePath -Recurse -Force
}
}
}
}
Khi giải nén tập tin chúng ta sử dụng như sau:
Extract-WinRarFiles -UnRarSourcePath "C:UsersNGUYENTHAODesktopNew folder (2)meomeo.rar" -UnRarTargetPath "C:UsersNGUYENTHAODesktopNew folder (2)" -DeleteSourceRarFiles
tham số -DeleteSourceRarFiles
dùng để xóa nguồn khi giải nén dữ liệu xong.
Thanks for watching!