I took a C++ project done by someone in VC++ and I opened the project on my machine. When I opened the project in VC++, I could see the source files organised in directories: Presenter, View and some file directly under Source Files. These presenter and view directories are seen only in the VC++ project explorer and not in windows file explorer. So I have this basic function: How does VC++ organise the source files in the given project. Also some of my source files are not visible in the VC++ solution explorer while they are seen on the windows file explorer. What could be reason behind that? (While building the code, I get some linking errors due to the functions implemented in these missing .cpp files)
Understanding VC++ project/solution explorer file hierarchy
442 Views Asked by labyrinth At
2
There are 2 best solutions below
Related Questions in C++
- C++ using std::vector across boundaries
- Linked list without struct
- Connecting Signal QML to C++ (Qt5)
- how to get the reference of struct soap inherited in C++ Proxy/Service class
- Why we can't assign value to pointer
- Conversion of objects in c++
- shared_ptr: "is not a type" error
- C++ template using pointer and non pointer arguments in a QVector
- C++ SFML 2.2 vectors
- Lifetime of temporary objects
- I want to be able to use 4 different variables in a select statement in c ++
- segmentation fault: 11, extracting data in vector
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- How can I print all the values in this linked list inside a hash table?
- Configured TTL for A record(s) backing CNAME records
Related Questions in VISUAL-C++
- I want to be able to use 4 different variables in a select statement in c ++
- llvm headers do not compile under msvc 2013
- VC++ .net: Functionality from managed DLL is not exported
- Add a picture to Picture Control in a dialog box (error RC2108: expected numerical dialog constant)
- Within a .vcxproj file what are the possible values for the <ConfigurationType> and what do those values mean?
- converting string to a double in visual c++ by parsing
- How to integrate opencv C++ codings with windows application?
- Create string with ESC characters
- What does the thing between "class" and the class name in VC++ mean?
- How to assign (Root)Folder ID in C++? Wherein, those files and folder under it would have the same ID as the RootFolder
- How to convert CString to long? VC++
- How to initialize a String^ *
- How to correctly implement methods of a class returning "this" in Managed C++?
- Non-managed referenced code strangely, "magically" changes its state for no reason when wrapped in managed
- Windows application using libusb: runtime error due to mutex lock
Related Questions in VISUAL-C++-6
- Use WinHTTP in Visual Studio 6.0
- Visual studio (whole thing) 2010 fails to upgrade older solutions?
- "The ActiveX control "{CCB90042-B81E-11D2-AB74-0040054C3719}" is not registered on this computer."
- Understanding VC++ project/solution explorer file hierarchy
- CTreeCtrl Custom Draw for additional States
- VC6: fatal error C1083: Cannot open include file: 'stdint.h'
- unresolved symbols when linking against vc6 dll/lib
- How can a C++ object have as a member an iterator to its position in an std::list?
- VC6 on Win7, SourceSafe diff viewer doesn't draw text on the left pane (when maximized)
- In MSVC 6, is an int 16 or 32 bits?
- Debug Assertion failed in .exe/wincore.cpp
- why can't using loading python27.dll without above Python27/lib py files
- error LNK2001: unresolved external symbol
- Need Platform SDK for VC6
- resolve link errors for __imp__open and other similarly named functions using Microsoft Visual C++ 6.0
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, as it turns out the organization of source files in Visual Studio is not synced, mirrored, or reflected in the Windows file explorer. If you go to the
Solution Explorerpane and try to add a new folder (Add->New Solution Folder) you'll notice that it's a new "Solution Folder" that you're adding, not a new folder on the OS. If you have files that you want to add, you'll also have to explicitly right-click and selectAdd->Existing Item..., or as dvasanth suggested, you can edit the*.vcxprojfile.