-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoldercreator.cmd
39 lines (38 loc) · 1.26 KB
/
foldercreator.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
title Folder Creator
color 0a
echo *********************************************
echo * Welcome to World Of Automation *
echo * Our aim is to reduce your effort *
echo *********************************************
echo CREATED BY:
echo # # ##### # # # # #
echo # # # # # # # # # #
echo # # # # # # # # #
echo # # ##### ####### # # #
echo # # # # # # # #
echo # # # # # # # #
echo # # ##### # # ##### #####
echo.
echo contact us:me*****nat321@gm******
echo.
echo Use it for creating multiple folder at one shot.
echo.
echo Please the read instruction file enclosed with this script
echo .
echo Remember that folders will be created where this folder creater file will be
echo.
echo BEWARE : Enter only numbr or it will not create any folder
pause
echo.
set /p nooffolder="Enter the no of folder you want to create:"
for /L %%N in (1,1,%nooffolder%) do md %%N
pause
cls
echo Your Folders are ready!!!!!!!!!!!!!!!!
echo.
echo thanks for using our script.
echo.
echo for other support contact us
pause
pause