当我调试我的项目时

当我调试我的项目时

本文介绍了当我调试我的项目时,给我这个错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我调试项目时,给我这个错误
无法将文件obj \ Debug \ call_phone.exe复制到bin \ Debug \ call_phone.exe.该进程无法访问文件bin \ Debug \ call_phone.exe;因为它正在被另一个进程使用. call_phone

when i debug my project give me this error
Unable to copy file obj\Debug\call_phone.exe to bin\Debug\call_phone.exe. The process cannot access the file bin\Debug\call_phone.exe; because it is being used by another process. call_phone

推荐答案


handle.exe <file_name>



该实用程序将扫描所有类型的句柄,而不仅仅是文件句柄.对于文件,它将扫描与文件名匹配的所有文件句柄(因此它不必是完整的路径名),并返回足以标识每个进程的信息,包括其 pid .因此,如果您需要有关该进程的更多信息,则还可以使用其他Sysinternals实用程序,尤其是其 Process Explorer :
http://technet.microsoft.com/en-us/sysinternals/bb896653 [ ^ ].

祝你好运,

-SA



This utility will scan all kinds of handles, not just file handles. For file, it will scan all file handles matching the file name (so it does not have to be a full path name) and return information sufficient to identify each process, including its pid. So, if you need more information on a process in question, you can also use other Sysinternals utilities, in particular, its Process Explorer:
http://technet.microsoft.com/en-us/sysinternals/bb896653[^].

Good luck,

—SA



这篇关于当我调试我的项目时,给我这个错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 17:13