cannot open Debug/ManagerTool.exe for writing Error executing link.exe.解决方案

cannot open Debug/ManagerTool.exe for writing Error executing link.exe.
--------------------Configuration:   ManagerTool   -   Win32   Debug--------------------
Linking...
LINK   :   fatal   error   LNK1168:   cannot   open   Debug/ManagerTool.exe   for   writing
Error   executing   link.exe.

什么意思,如何修正?  
哪位解释一下

------解决方案--------------------
Debug/ManagerTool.exe 文件夹属性被设置为“只读”,要去掉“只读”属性就行了
------解决方案--------------------
LNK1168: cannot open Debug\ <Project-Name> .exe for writing

This error occurs when the link editor attempts to write to a .exe file that is currently in use. The .exe file of an executing program is write protected until the program is terminated. Look at the status bar at the bottom of your screen and find the icon representing your executable application. Open the application and exit from it. Then select Build.


------解决方案--------------------
link需要把你原来生成的EXE文件覆盖掉,操作失败的可能有:正在被打开访问,或正在执行,或者只读,请检查一下。最有可能的是该程序正在执行,打开TaskManager终止进程即可。