Powershell 脚本用于将存储库中的文件夹移动到正确的子文件夹

Powershell 脚本用于将存储库中的文件夹移动到正确的子文件夹

我正在尝试编写一个脚本,它将从文件中读取项目名称(每行一个)e:\projects.txt,并为每个项目查找文件夹中所有e:\repository包含项目名称的子文件夹,并将它们移动到文件夹中e:\projects\projectname

对于一个项目,命令将是:

Get-ChildItem -Path "e:\repository" -Filter *ProjectName1* -Directory | 
   Move-Item -Destination "E:\projects\ProjectName1" -Recurse

感谢您的帮助!

相关内容