-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclean_files.ps1
45 lines (43 loc) · 1.47 KB
/
clean_files.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
36
37
38
39
40
41
42
43
44
45
param (
[string]$Option = $(Read-Host "Choose what to clean (Clash, Lab, Solutions, Everything)")
)
function Remove-ItemFiles {
param (
[string]$Path,
[bool]$IsRecursive = $false
)
Get-ChildItem -Path $Path -File -Recurse | Remove-Item -Force
Write-Host "Deleted all files in $Path"
}
$confirmation = Read-Host "Are you sure you want to clean $($Option)? (yes/no)"
if ($confirmation -eq 'yes') {
switch ($Option) {
"Clash" {
Remove-ItemFiles -Path "./src/clash"
}
"Lab" {
Get-ChildItem -Path "./src/lab" | Remove-Item -Force -Recurse
Write-Host "Deleted everything in ./src/lab"
}
"Solutions" {
Remove-ItemFiles -Path "./src/bot_programming"
Remove-ItemFiles -Path "./src/codegolf"
Remove-ItemFiles -Path "./src/optimization"
Remove-ItemFiles -Path "./src/puzzles"
}
"Everything" {
Remove-ItemFiles -Path "./src/clash"
Get-ChildItem -Path "./src/lab" | Remove-Item -Force -Recurse
Write-Host "Deleted everything in ./src/lab"
Remove-ItemFiles -Path "./src/bot_programming"
Remove-ItemFiles -Path "./src/codegolf"
Remove-ItemFiles -Path "./src/optimization"
Remove-ItemFiles -Path "./src/puzzles"
}
default {
Write-Host "Invalid option selected."
}
}
} else {
Write-Host "Operation cancelled."
}