如何删除 LRU 文件夹直至有 5GB 可用空间?
给定一个文件夹,例如 \\localhost\c$\work\
。
我想每 15 分钟运行一次 powershell 脚本,以确保有 5GB 的可用空间。
如果< 有 5GB 可用空间,请删除工作中最近最少使用的文件夹,直到有 >5GB 可用空间。
想法?
Given a folder, say \\localhost\c$\work\
.
I'd like to run a powershell script every 15 minutes that ensures 5GB of free space is available.
If < 5GB is available, remove the least recently used folder within work until >5GB is available.
Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
计划任务,您可以使用任务计划程序(示例)
要 你可以使用的脚本
To schedule the task, you can use the task scheduler (example here)
For a script you could use
好吧,这一切都取决于您的文件夹如何“使用”。 如果没有简单的指标,您可以尝试使用 .NET FileSystemWatcher类来查找更改并记住它们以及队列中的时间戳(按访问时间排序)。 然后您可以选择要从该队列中删除的下一个文件夹。 但它肯定不漂亮。
Well, that all depends on how your folders are "used". If there are no easy indicators you can try using the .NET FileSystemWatcher class to look for changes and remember them as well as a timestamp in a queue, ordered by access time. Then you can pick the next folder to delete from that queue. But it's certainly not pretty.