Powershell在父文件夹中查找PDF并将其移动到子文件夹

时间:2018-01-12 01:37:10

标签: powershell

我正在尝试创建一个Powershell脚本,该脚本将在父目录中搜索.pdf文件并将它们移动到子文件夹。

例如,John Doe的.pdf见于:Studies \ Doe John \ Doe John.pdf。

我希望转到:研究\ Doe John \ Reports

有多个报告要一个移动,所以还有Jane Doe:Studies \ Doe Jane

我对如何让它发挥作用感到茫然。在此先感谢您的帮助!

2 个答案:

答案 0 :(得分:0)

这个论坛上有很多关于如何做到这一点的例子。只需使用搜索框即可完成。

例如: “我正在尝试将文件放在一个以它们来自的机器命名的文件夹中。”

Powershell script to search for file types from a list of machines, then copy results into directories named after the machine

因此,您的查询很容易被视为上述论坛帖子的副本。

你要求的是一件普通的事。 只需在任何搜索引擎中输入确切的帖子标题,您就会对该主题进行大量点击。查找文件只是查找文件,它的类型无关紧要。

答案 1 :(得分:0)

试试这......这对我有用 Get-Childitem "D:\testfolder1" -Include *.pdf -Recurse -Force| Copy-Item -Destination "D:\testfolder"