Powershell命令仅复制文本文件

时间:2013-04-14 22:12:30

标签: powershell

我正在尝试编写一个Powershell命令来识别和复制该目录的目录和子目录中的文本(.txt)文件。有没有人知道是否有可以执行此任务的命令。

1 个答案:

答案 0 :(得分:4)

如果您不担心维护目录结构,可以使用

Get-ChildItem *.txt -recurse | Copy-Item -destination c:\qwerty

如果您想维护目录结构,可以使用

Copy-Item  -Recurse -Filter *.txt  -path c:\temp -destination c:\asdf

NB。
PowerShell get-help命令非常有用,除了通配符之外它 即
get-help *copy*为您提供可能对您有用的命令列表 get-help Copy-Item -full为您提供了所有参数以及使用示例。