Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查从 txt 文件传递的路径是否早于 X 天?然后,如果是,我想删除它们。
检查文件夹中文件的数据修改不是我的事。我只想检查文件夹的数据创建。
我是 Powershell 的新手,所以目前我知道只处理文件。
您将CreationTime对象的属性与 X 天前的日期进行比较:
CreationTime
$x = 42 $f = Get-Item C:\Temp\foo.txt if ($f.CreationTime -lt (Get-Date).AddDays(-$x)) { $f.Delete }