How do you create five sub directory in one directory with example?
The details depend on whether you want to do it interactively,
or via commands in Windows, in Linux, etc. Here are the commands in
Windows:c:
cd \
md MainDir
cd MainDir
md Sub1
md Sub2
md Sub3
md Sub4
md Sub5