Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个不断被进程使用(锁定)的 .txt 文件。我如何从另一个 vb6 程序中读取这个文件?我尝试先复制它然后阅读,但 FileCopy 给出:
运行时错误“70”权限被拒绝
打开文件也是如此Open "file.txt" for binary as...
Open "file.txt" for binary as...
如果另一个进程在没有共享权限的情况下锁定了文件,这是不可能的。一种方法是使用 Shadow Copies 的低级 API。但据我所知,这些都是无证的。尽管 sysinternals 确实提供了一些示例。(没有源代码)