mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-20 08:58:18 +02:00
Added remove-dir-tree.ps1
This commit is contained in:
parent
0ae669da26
commit
ffe8bcc3d7
27
scripts/remove-dir-tree.ps1
Normal file
27
scripts/remove-dir-tree.ps1
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Removes a dir tree
|
||||||
|
.DESCRIPTION
|
||||||
|
This PowerShell script silently removes a directory tree recursively. Use it with care!
|
||||||
|
.PARAMETER pathToDirTree
|
||||||
|
Specifies the file path to the directory tree
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./remove-dir-tree.ps1 C:\Temp
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz | License: CC0
|
||||||
|
#>
|
||||||
|
|
||||||
|
param([string]$pathToDirTree = "")
|
||||||
|
|
||||||
|
try {
|
||||||
|
if ($pathToDirTree -eq "" ) { $pathToDirTree = Read-Host "Enter the path to the directory tree" }
|
||||||
|
|
||||||
|
Remove-Item -Force -Recurse -Confirm:$false $pathToDirTree
|
||||||
|
|
||||||
|
exit 0 # success
|
||||||
|
} catch {
|
||||||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
exit 1
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user