摘要: PowerShell中 用Where-Object命令过滤出修改日期为今天的文件 Get-ChildItem -Path . -Recurse | Where-Object { $_.LastWriteTime.Date -eq (Get-Date).Date } 阅读全文
posted @ 2023-06-17 16:26 神经蛙 阅读(27) 评论(0) 推荐(0) 编辑