如何从VB中清除csv文件的内容
我需要从 Visual Basic 中删除/清除现有 csv 文件中的所有数据。这看起来很简单,但我在实现它时遇到了很多问题!
I need to delete/clear all data from an existing csv file from Visual Basic. This seems really simple but I have had a lot of problems making it happen!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“清除所有数据”是什么意思?最简单的选择是删除该文件。
如果您想将其替换为空文件,请打开该文件进行输出,然后将其关闭。这应该截断文件。
What do you mean by "clear all data"? The easiest option would be to delete the file.
If you want to replace it with an emtpy file, open the file for output, then close it. That should truncate the file.