我正在尝试使用 PowerShell 在 Windows 环境中将文件从一个文件夹移动到另一个文件夹。移动过程按我的需要运行,但我想根据文件名的最后一个字符进行过滤。例如,DIR *1.zip
在 Windows Explore 中运行良好,但在 Windows Explore 中则$filesToMove = Get-ChildItem -Path $sourceFolder -File -Filter "*1.zip"
不行。未找到任何文件。
$filesToMove = Get-ChildItem -Path $sourceFolder -File -Filter "*.zip"
运行良好。关于如何做到这一点有什么想法吗?
我尝试过许多过滤器和模式,但都没有成功。我需要的是这样的请求
$filesToMove = Get-ChildItem -Path $sourceFolder -File -Filter "*2.zip"
这仅从文件列表中返回 FileNumber5932.zip。
FileNumber1796.zip
FileNumber2021.zip
FileNumber5932.zip
FileNumber4369.zip
FileNumber1615.zip