Last active
May 3, 2016 15:28
-
-
Save jacobhackl/5ec63ca0d535bb6e6e5b7cadbdbb8c26 to your computer and use it in GitHub Desktop.
Export the md command for all folders in a location
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setlocal | |
set "location=d:\" | |
for /F "delims=" %%a in ('dir /s /ad /b "%location%"') do ( | |
echo md %%a >> createDirectorys.bat | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment