Windows 工具可以通过单击删除多个不同文件夹中的内容吗?

发布于 2025-01-05 06:02:19 字数 98 浏览 0 评论 0原文

我的磁盘上分布着几个文件夹,我必须每天多次手动删除内容(它是一些缓存的东西)。有没有一个很好的工具,我可以通过单击或快捷方式或其他方式指定文件夹并立即删除其内容?文件夹本身必须保留。

I have several folders spread all across my disk and I have to manually delete the content multiple times a day (its some cache thing). Is there a nice tool where I can specify the folders and delete their content at once with either a click or shortcut or something? The folders themselves have to stay.

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

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

发布评论

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

评论(1

私野 2025-01-12 06:02:19

您始终可以编写一个批处理脚本来为您执行此操作。

创建一个文件,将其命名为“wipefolders.bat”,

然后在里面写入类似的内容

cd <drive>:
cd root\path\of\folders

cd foldera
del *.*
cd ..

cd folderb
del *.*

etc...

,然后创建此链接的​​快捷方式。

You could always write a batch script to do this for you.

Create a file, call it 'wipefolders.bat'

Then write something like this inside

cd <drive>:
cd root\path\of\folders

cd foldera
del *.*
cd ..

cd folderb
del *.*

etc...

Then just create a shortcut to this link.

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