fatal error C1083: Cannot open precompiled header file: 'Debug/Face.pch': No such file or directory
请大侠们多多指导!

解决方案 »

  1.   

    build->clean
    build->rebuild all
      

  2.   

    删除debug 子目录试试
    不行删除工程文件重建工程
    将文件加入空的工程里
      

  3.   

    This error can occur if the file, subdirectory, or disk on which it resides is read-only. In this case, make the file writable or move the file to a writable disk. See your operating system documentation for information on removing the read-only attribute from a file.
    This error may be caused by not having enough file handles. Close some open applications and recompile.
    Trying to open a file or directory for which you do not have permission can cause this error. Move the file to a directory where you do have access privileges, or ask your network administrator to grant you access to the file.
    If an include file could not be opened, check that the INCLUDE environment variable is set correctly and that the name of the file is spelled correctly.
    Using double quotation s around a complete path specification in a #include directive causes the standard directories to NOT be searched. See The #include Directive in the Preprocessor Reference for more information. 
      

  4.   

    project settings->source files->stdafx.cpp->c/c++->category->precompiled headers->create precompiled header file->Through header: stdafx.h      确定后编译
      

  5.   

    project ->settings,在左边Settins for的那一栏找到 source files->stdafx.cpp
    然后在右边找到->c/c++->category->precompiled headers->create precompiled header file->Through header: stdafx.h      OK
      

  6.   

    多谢jijuzheng(极品飞车) 老兄!呵呵!