1

May be my topic name is unclear ant that's why I couldn't find a solution on the internet.

I want to have an ability to create a folder from Explorer with an ability to create subfolders automatically if specified folder name contains characters '\'. For example: I type the following name:

folder1\subfolder1\subfolder2

And after pressing Enter it creates folder with a name folder1 (if such folder doesn't exist yet) and folder with a name subfolder1 in folder folder1 (if such folder doesn't exist yet) and folder with a name subfolder2 in folder subfolder1 (if such folder doesn't exist yet).

Total Commander has such ability. But when I try to type that path with slashes in Explorer it tells me that folder can't contain such characters.

Is there a some Explorer extension that adds such functionality? For example, I right-click on a free space in an Explorer window folder and select context-menu item like "Create folder and subfolders" and it gives me a way for typing new path with slashes.

1 Answers1

1

Why dont you use command prompt (cmd.exe) and than type

md folder1\subfolder1\subfolder2

It will create folders, and subfolders. if you are in folder C:\Users\Administrator it will create C:\Users\Administrator\folder1\subfolder1\subfolder2

p.s. Typing cmd in windows explorer address bar will open cmd at current directory.