如何根据创建日期而不是修改使用powershell复制文件

时间:2018-04-24 10:44:37

标签: powershell copy

我有2个Dirs我需要从一个到另一个只复制仅在24小时内创建的特定扩展名(JPG,JPEG) 任何建议

1 个答案:

答案 0 :(得分:0)

下面的内容可能会起作用

Get-ChildItem -path "C:\Source\*" -Include "*.jpg","*.jpeg"|
where{!$_.PSIsContainer -and ($_.CreationTime -gt (Get-Date).AddDays(-1))} |
Copy-Item  -Destination "C:\Destination" -Container