如何扫描整个驱动器并删除具有多个特定文件扩展名的所有文件(只读或非只读)?
我正在为我的应用程序开发一项功能,单击按钮即可扫描“C:\”驱动器(以及所有子目录,只读或非只读),并删除具有特定文件扩展名的所有文件。我该怎么做呢?我确信会使用列表或数组......但这就是我所知道的。
请仅限 .Net Framework 2.0!
I'm working a feature for a application of mine that on button click it scans the "C:\" drive (and all sub directory's, read-only or not), and deletes all files with specific file extensions. How would I go about doing this? I'm sure a list or a array would be used... but that's about all I know.
Please .Net framework 2.0 ONLY!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
遍历目录树。 此处描述了必需的代码。
Walk the directory tree. The requisite code is described here.
我认为下面的代码可以工作:
I think the following code would work:
试试这个:
try this: