问题
How can I copy any subfolder with different names under a folder from a server and paste into my computer as a .zip fill ?! I want to copy moon folders that are listed below $RootSourcePath\$Miljö\$År\$Månad\dag!
$RootSourcePath = "D:\LogBackup\"
$Miljö = Read-Host "Skriva in Miljö Namn under $RootSourcePath"
If (test-path $RootSourcePath\$Miljö) {Write-Host "Miljön finns under LogBackup." -ForegroundColor Green}
Else {
Write-Host "Miljön finns INTE i LogBackup." -ForegroundColor Red
exit
}
$År = Read-Host "Skriva in År under $RootSourcePath$Miljö"
If (test-path $RootSourcePath\$Miljö\$År) {Write-Host "År finns i D:\LogBackup\$Miljö." -ForegroundColor Green}
Else {
Write-Host "År finns INTE i D:\LogBackup\$Miljö\$År." -ForegroundColor Red
exit
}
$Månad = Read-Host "Skriva in Månad under $RootSourcePath$Miljö\$År"
If (test-path $RootSourcePath\$Miljö\$År) {Write-Host "Månad finns i $RootSourcePath$Miljö\$År." -ForegroundColor Green}
Else {
Write-Host "Månad finns INTE i $RootSourcePath\$Miljö\$År." -ForegroundColor Red
exit
}
$Dag = Read-Host "Skriva in Dag under $RootSourcePath$Miljö\$År\$Månad"
If (test-path $RootSourcePath\$Miljö\$År\$Månad) {Write-Host "Dag finns i $RootSourcePath$Miljö\$År\$Månad." -ForegroundColor Green}
Else {
Write-Host "Dag finns INTE i $RootSourcePath\$Miljö\$År\Månad." -ForegroundColor Red
exit
}
来源:https://stackoverflow.com/questions/48191633/copy-subfolder-with-especially-name-powershell