Home > Mobile >  Because VISUAL STUDIO CODE displays the folder and subfolder on the same level
Because VISUAL STUDIO CODE displays the folder and subfolder on the same level

Time:02-02

I am trying to create a subfolder inside a folder in angular. Unfortunately I create them on the same level. I tried doing the same thing in Windows Explorer, but the problem persists. Why are the other folders and subfolders of the project displayed normally? That is, with a hierarchical tree structure?enter image description here

CodePudding user response:

The backslash between the two folders mean that "components" is inside "comunicazioni2". If they were at same level, one would appear at the top of the other.

CodePudding user response:

They are not on the same level they are just shown this way because there is only 1 subfolder. If you add another sub folder it will show it the normal way with indentation.

  • Related