c1xx fatal error C1083 Cannot open source file...
Posted on 2012-04-28 23:12 无忧consume 阅读(562) 评论(0) 编辑 收藏 举报在VS2008 VC++项目中,新建了一个cpp文件,然后在物理硬盘上手动删除了,或是手动移动了地址,就出现如下错误。
1>------ Build started: Project: test, Configuration: Debug Win32 ------
1>Compiling...
1>random.cpp
1>c1xx : fatal error C1083: Cannot open source file: '.\XX.cpp': No such file or directory
解决方法是:到项目文件test.vcproj 中找到下面一段代码,把已经删除的文件路径都给删掉,或是修改路径即可
<Filter
Name="Source Files"
Filter="cpp;cxx;c;def"
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
<File
RelativePath=".\src\main.cpp"
>
</File>
<File
RelativePath=".\src\random.cpp"
>
</File>
<File
RelativePath=".\src\qt\random.cpp"
>
</File>
</Filter>