where is the file system configuration? (C++)

I want to create subfolders, move and delete C++ files.

Remove the contents of the folders (Binaries, Intermediate and MyProject.sln) does not work!! The compiler tries to compile files that are no longer there.

Where are the Paths written? In which file?
I want to edit them manually.

Thank you so much!!

ok, i found the solution for relocate files.

1-search for:

…\Intermediate\ProjectFiles\MyProject.vcxproj

2-Edit this:

Include=“…..\Source\MyProject\Public\Header.h” /

Include=“…..\Source\MyProject\Public\SUBFOLDER\Header.h” /

3-Move the file to a SUBFOLDER:

4-Now i can see the SUBFOLDER in the editor explorer and its content… and it compile fine!! :slight_smile:

5 - don’t forget modify your include PATHs

include “\SUBFOLDER\Header.h”

DONE!!


PS: Please gentlemen developers fix this nightmare.
You developed a very complex engine. Truly an engineering masterpiece. And I can’t believe that it has bugs in something so basic like this.


Thank you so much!!