Home > database >  What does the "/" mean in VSCode file formatting?
What does the "/" mean in VSCode file formatting?

Time:11-24

I have started using VSCode and was wondering what the / meant when I click on a file (see attached screenshot). Is it simply the full path of the file that I've clicked on? Thanks!

Screenshot

CodePudding user response:

It means sub folder inside main folder you have created

CodePudding user response:

I think you may be referring to the feature where a folder with a single subfolder are shown on the same line.

For example, let's consider the following structure:

X/
├─ a/
│  ├─ a1/
│  │  └- a1.txt
│  └- a2/
│     └- a2.txt
└ b/
  └- b1/
      └- b1.txt

Since b1 is the only folder under b the explorer window will show b and b1 on a single line:

enter image description here

CodePudding user response:

eth-sig-util is child folder of metamask folder which is parent. To access child we have to use '/' after parent folder.

  • Related