IO文件问题
我有这个程序:
Module Module1
Sub Main()
IO.File.Create("C:\text.txt")
Shell("notepad ""C:\text.txt"" ")
Console.ReadLine()
End Sub
End Module
我的问题是:如何使我的程序不使用新创建的文件“text.txt”?记事本无法打开它,它说(该进程无法访问该文件,因为它正在被另一个进程使用)。
I have this program:
Module Module1
Sub Main()
IO.File.Create("C:\text.txt")
Shell("notepad ""C:\text.txt"" ")
Console.ReadLine()
End Sub
End Module
My question is: How to make my program not to use the newly created file 'text.txt'? Notepad fails to open it, it says (The process cannot access the file because it is being used by another process).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
Close()
由Create()
返回的FileStream
:You need to
Close()
theFileStream
returned byCreate()
: