Improve upload-file.ps1

This commit is contained in:
Markus Fleschutz 2021-04-23 09:11:39 +02:00
parent c5bb8480f7
commit 1f87722c2e

View File

@ -17,7 +17,7 @@ try {
# check local file first: # check local file first:
if (-not(test-path "$File" -pathType leaf)) { throw "Can't access file: $File" } if (-not(test-path "$File" -pathType leaf)) { throw "Can't access file: $File" }
$FullPath = Resolve-Path $File $FullPath = Resolve-Path "$File"
$Filename = (Get-Item $File).Name $Filename = (Get-Item $File).Name
$FileSize = (Get-Item $File).Length $FileSize = (Get-Item $File).Length
"Local file: $FullPath ($FileSize bytes)" "Local file: $FullPath ($FileSize bytes)"
@ -28,16 +28,16 @@ try {
$request.EnableSSL = $false $request.EnableSSL = $false
$request.KeepAlive = $true $request.KeepAlive = $true
$request.UseBinary = $true $request.UseBinary = $true
$request.UsePassive = $false $request.UsePassive = $true
$fileStream = [System.IO.File]::OpenRead("$FullPath") $fileStream = [System.IO.File]::OpenRead("$FullPath")
$ftpStream = $request.GetRequestStream() $ftpStream = $request.GetRequestStream()
"Uploading ..." "Uploading ..."
$buffer = New-Object Byte[] 64KB $Buf = New-Object Byte[] 64KB
while (($read = $fileStream.Read($buffer, 0, $buffer.Length)) -gt 0) while (($DataRead = $fileStream.Read($Buf, 0, $Buf.Length)) -gt 0)
{ {
$ftpStream.Write($buffer, 0, $read) $ftpStream.Write($Buf, 0, $DataRead)
$pct = ($fileStream.Position / $fileStream.Length) $pct = ($fileStream.Position / $fileStream.Length)
Write-Progress -Activity "Uploading" -Status ("{0:P0} complete:" -f $pct) -PercentComplete ($pct * 100) Write-Progress -Activity "Uploading" -Status ("{0:P0} complete:" -f $pct) -PercentComplete ($pct * 100)
} }
@ -47,7 +47,7 @@ try {
$fileStream.Dispose() $fileStream.Dispose()
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ uploaded $File to $URL in $Elapsed sec." "✔️ uploaded $Filename to $URL in $Elapsed sec."
exit 0 exit 0
} catch { } catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"