ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Clean Visual Studio Workspaces
    컴퓨터 2016. 12. 19. 09:30
    반응형

    비주얼스투디오로 개발하다 보면 소스 전달이나 백업을 할때 쓸데없이 용량이 큰 불필요한 파일들이 많다

    Bat 파일을 만들어 제거하면 되는데 문제는 어떤 파일들을 제거해도 되느냐가 문제

    del /f /q /s /a rhsa *.bak *.ncb *.obj *.pdb *.idb *.ilk *.pch *.suo *.aps *.opt *.sbr *.bsc *.user

    pause


    인터넷 검색 결과 이같은 파일은 제거해도 무방하다는 결론


    File extension Source Contents

    .pch Debug Precompiled header file.

    .pdb Debug The program debug database file.

    Intermediate files generated by the compiler:


    File extension Source Contents

    .bsc Compiling The browser code file.

    .idb Compiling The state file, containing dependency information between source files and class definitions.

    .sbr Compiling Source browser intermediate file. The input file for BSCMAKE.

    Intermediate files generated by the linker:


    File extension Source Contents

    .ilk Linking Incremental link file. See /INCREMENTAL for more information.

    .map Linking A text file containing linker information. Use the /Fm compiler option to name the map file. See /MAP for more information.

    Intermediate files generated by Visual Studio:


    File extension Source Contents

    .aps Resource Binary version of the current resource script file; used for quick loading.

    .ncb Solution This file is a binary file used by ClassView and is specific to the local machine.

    .o Object files, compiled but not linked.

    .obj Object files, compiled but not linked.

    .opt This is a binary file that is the workspace options file for the local computer.

    .plg build log file. It is an HTML file which you can view in i.e. or other browsers.

    Output files (most often they are our products):


    File extension Source Contents

    .exe Output your product.

    .dll Output your DLL product.

    .lib Output the library file which stores information about your .dll file.

    .ocx Output our ActiveX controls.

    Other files:


    File extension Source Contents

    .scc Other source safe file (contribution from Indivara in this forum.)

    반응형

    댓글

Designed by Tistory.