在 VB 2005 中如何确定哪个程序正在使用某个文件?
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
System Internals 有一个名为 Handle 的工具,您可以使用它。 它告诉您哪个程序打开了哪个文件和/或目录。 它是一个控制台应用程序。 您可以将其输出通过管道传输到文本文件,然后只需打开该文本文件并搜索您要查找的文件。 然后你就可以看到哪个进程打开了它。
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.