IO文件问题

发布于 2024-11-28 10:56:01 字数 282 浏览 1 评论 0原文

我有这个程序:

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 技术交流群。

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

发布评论

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

评论(1

握住你手 2024-12-05 10:56:01

您需要Close()Create()返回的FileStream

IO.File.Create("C:\text.txt").Close()

You need to Close() the FileStream returned byCreate():

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