删除列表中未找到的所有文件扩展名的文件
我有一个从文本文件中读取的列表框,用户可以在其中添加和删除文件扩展名类型,这将编译要排除在删除之外的文件列表。
如何对 vb.net 进行编程以删除给定目录示例 C:\MYFILES 中的所有文件(除非在我的列表中找到)?
I have a list box that reads from a textfile to which the user can add and remove file extension types, this compiling a list of files to be excluded from deletion.
how can I program vb.net to delete all files of a given directory example C:\MYFILES except if found in my list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将删除给定目录中扩展名不在排除列表中的所有文件:
不要忘记文件扩展名中的点(fe
.txt
)This will delete all files in a given directory which extension is not in the exclude-list:
Don't forgot the point in the file-extension(f.e.
.txt
)