Thanks for your reply. I definitely would like to know how to do it using a script
OK, here you go:
- Mark the code below with your mouse, then press Ctrl+C to copy it.
- Press the Windows key + R
- Type this command and press Enter:
notepad "%UserProfile%\Desktop\CreateFolders.bat" 4. Press Ctrl+V to paste the code lines. 5. Save & close the file.
To create the set of subfolders, do this:
- Navigate to some new folder that lacks the subfolders.
- Grab the folder with your left mouse button, then drop it on top of the newly created desktop file.
@echo off
if "%1"=="" goto :eof
md "%1\Work Reports"
md "%1\Certs"
md "%1\Invoices"
md "%1\Quotes"
echo Folder creation complete.
pause