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!
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!