copy subfolder with especially name powershell

家住魔仙堡 提交于 2019-12-11 17:41:23

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!