Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
**When I compile my code in visual studio c++ 2008, I get the following fatal error:  
fatal error LNK1104: cannot open file 'C:\Users\....\Documents\Visual Studio         
2008\Projects\....\Debug\....exe**  

I just copied my code from another project in visual studio C++ and paste it in this project again in visual studio C++. can it cause this error?

share|improve this question
check the read only property of this file and be sure that it is false – SimpleFrog Jan 31 at 4:43

2 Answers

This can happen because, for example, the executable is currently executing or opened by another program, or because you don't have the right permissions for that directory.

share|improve this answer
how can I treat it right now? – Bahareh Aug 20 '12 at 1:47
Depends on the exact reason why VS can't open the file, which I am not capable of psychically determining. – DeadMG Aug 20 '12 at 3:31
;D you're right. cheers! – Bahareh Aug 20 '12 at 9:30

open TASK MANAGER and see if the process of the .exe is running in background even after closing it. if yes, then kill the process and then try to run it again.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.