cls
@echo off
title folder maker
:make
echo this is the program in which you can make a folder in minuts
echo please type the Directory in which to make a folder
set/p "rpath=>"
echo type the name of the folder which you want to make
set/p "name=>"
if exist "%rpath%\%name%" goto over
md %rpath%\%name%
echo do you want to paste any thing in this folder(y/n)
set/p "ans=>"
if %ans%==N goto end
if %ans%==n goto end
echo type the path of the which you want to paste in your new folder
set /p"anss=>"
copy %anss% %rpath%\%name%
echo work done succsessfully
echo do you want to make other folder (Y/N)
set /p "ansss=>"
if %ansss%== n goto end
if %ansss%== N goto end
goto make
:end
exit
0 Comments:
Post a Comment