使用 Powershell 复制lastwritetime -ge 3/26/2010 9:00pm 的文件
我需要将一个目录中的文件复制到另一个目录,其中最后写入时间大于或等于 3/26/2010 9:00pm。我正在使用:
Get-ChildItem C:\pstest\hlstore\folder1\data | where-object {$i.lastwritetime -ge “3/26/2010 9:00 PM”} | Copy-Item -destination c:\pstest\hlstore2\folder1\data
但什么也没发生...
任何帮助将不胜感激。
谢谢!
情绪化
I need to copy files in one directory to another directory where the lastwritetime is greater than or equal to 3/26/2010 9:00pm. I'm using:
Get-ChildItem C:\pstest\hlstore\folder1\data | where-object {$i.lastwritetime -ge “3/26/2010 9:00 PM”} | Copy-Item -destination c:\pstest\hlstore2\folder1\data
But nothing happens...
Any help would be greatly appreciated.
Thanks!
Emo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
where-object
中“it”变量的名称是$_
,而不是$i
。另外,如果您使用这些引号
“”
而不是""
,我认为它也会失败。Try this:
The name of the "it" variable in
where-object
is$_
, not$i
.Also, if you're using these quotes
“”
instead of""
, I think it would also fail.