ReePrime
How to create  batch file

Hosted by Dailymotion. For legal issues report at the Copyright Center, report us on DMC, or use the Instant Removal tool.

How to create batch file

S
sohail murtaza

7 Views • Feb 13, 2016

Description

Full instructions:

First, create a batch file. Right-click,’New’, ‘Text document’, give it a name, and give it the .bat file extension.

Click 'Yes'.

Now right-click your file, and click 'edit'.

Start the batch file with @echo off. This will prevent the commands from showing on screen when running the batch file.

Now type ‘md’, which means ‘make directory’. This is the command for creating a folder.
Then type a space, and the name of the folder you want to create.

To create multiple folders at once, separate them with a space.

To create a folder with a subfolder, type the name of the folder, then use the backslash (\), followed by the name of the subfolder.

When you're done typing the names of the folders you want to create, click 'File' and, 'Save', and close the batch file.

Double-click on your batch file to run it.

And, it works! As you can see, it created all the folders I wanted to create, including this folder, with two subfolders.