Posts

Showing posts from April, 2013

Create Bulk folders Using Batch file

Simple Script To Create Bulk Folder L:isted In Text File: Create a file named "CreateDir.bat"  and list all the folders tat you want to create in "file.txt" Content of CreateDir.bat 1 2 3 @ echo off for /f %%i in (file.txt) do mkdir %%i Simply run the batch file and your folders will be created.!