Huge Discounts on Mobiles, Books, Cameras, Computers etc: @Flipkart
Flipkart.com

Tuesday, October 13, 2015

Create multiple folders in a path at once

Ever wanted to recreate a path (folder structure) in one shot, without creating folder by folder?!

The easiest way to do this on Windows is:
1) Go to Run, type cmd
2) Command Prompt would open, there type following command
3) md <your_path>

eg: md folder1\folder2\folder3\folder4\folder5

All 5 folders (directories) will be created as per above structure with a single command! Isn't it cool!

For more info on above command type md /?

md is same as mkdir!