用于删除定期老化文件的 C# 实用程序

发布于 2024-08-08 03:21:46 字数 1490 浏览 8 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-08-15 03:21:46

这是我作为计划任务运行的 Powershell 脚本:

dir c:\directory-to-watch | where {$_.LastWriteTime -lt
    [DateTime]::Today.AddDays(-7)} | del

从 c:\directory-to-watch 中删除过去 7 天内未触及的所有文件。

Here's a Powershell script that I run as a scheduled task:

dir c:\directory-to-watch | where {$_.LastWriteTime -lt
    [DateTime]::Today.AddDays(-7)} | del

Delete all files not touched in the last seven days from c:\directory-to-watch.

梦途 2024-08-15 03:21:46

我们使用我们创建的 xxcopy 脚本,这些脚本是从任务计划程序执行的,如上面提到的“忘记分号”。

查看他们的命令行参考。它们的实用性非常有用且灵活。

http://www.xxcopy.com/xxcopy01.htm

We use xxcopy scripts that we create and that are executed from task scheduler as Forgotten Semicolon mentions above.

Checkout their command line reference. Their utility is extremely useful and flexible.

http://www.xxcopy.com/xxcopy01.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文