ritwickdey / vscode-create-file-folder

A small vscode extension that help you to create files & folder in Atom Style.
https://marketplace.visualstudio.com/items?itemName=ritwickdey.create-file-folder
MIT License
35 stars 17 forks source link

Tip for creating sister folders with files #7

Open caiohenrique-developer opened 3 years ago

caiohenrique-developer commented 3 years ago

It would be nice to be able to create sibling paths in the same directory with your internal files. Maybe something like: /path/subpath/siblingFolder1/file1 > file2 + siblingFolder2/file1 > file2

Result:

path
│
└───subpath
│   │
│   └───siblingFolder1
│   │  │   file1
│   │  │   file2
│   │  │   ... files/folders
│   │
│   └───siblingFolder2
│      │   file1
│      │   file2
│      │   ... files/folders
│
└── ...

upvote?