forked from fleschutz/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdownload-dir.ps1
executable file
·35 lines (29 loc) · 1.05 KB
/
download-dir.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<#
.SYNOPSIS
Downloads a folder (including subfolders) from an URL
.DESCRIPTION
This PowerShell script downloads a folder (including subfolders) from the given URL.
.PARAMETER URL
Specifies the URL where to download from
.EXAMPLE
PS> ./download-dir https://www.cnn.com
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$URL = "")
try {
if ($URL -eq "") { $URL = read-host "Enter directory URL to download" }
$StopWatch = [system.diagnostics.stopwatch]::startNew()
& wget --version
if ($lastExitCode -ne "0") { throw "Can't execute 'wget' - make sure wget is installed and available" }
& wget --mirror --convert-links --adjust-extension --page-requisites --no-parent $URL --directory-prefix . --no-verbose
if ($lastExitCode -ne "0") { throw "Can't execute 'wget --mirror $URL'" }
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ downloaded directory from $URL in $Elapsed sec"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}