在 VB 2005 中如何确定哪个程序正在使用某个文件?

发布于 2024-07-21 16:30:54 字数 90 浏览 1 评论 0原文

有没有办法在 vb 2005 中获取锁定文件的程序?

例如,当我尝试打开一个已被另一个程序打开的文件时,我可以获得锁定该文件的进程/程序的名称吗?

Is there a way to get the program that is locking a file, in vb 2005?

For instance, when I try to open a file that is already opened by another program, can I get the name of the process/program that has locked this file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

拍不死你 2024-07-28 16:30:54

System Internals 有一个名为 Handle 的工具,您可以使用它。 它告诉您哪个程序打开了哪个文件和/或目录。 它是一个控制台应用程序。 您可以将其输出通过管道传输到文本文件,然后只需打开该文本文件并搜索您要查找的文件。 然后你就可以看到哪个进程打开了它。

c:\handle > output.txt

System Internals has a tool called Handle that you can use. It tells you which program has what file and/or directory open. It is a console application. You can pipe its output to a text file and then simply open that text file and search for the file you're looking for. Then you can see which process has it open.

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