Monday, July 16, 2012

Create Hundreds Of Folders With Few Clicks Trick


Now create new folders with just a click. Then you will not waste time in making new directories in your computer. This will create as many folder you want to make.
http://www.freeiconsweb.com/site-images/Large/aha-folder-icons-452.jpg
Okay lets start the trick now..
Step1 : First opennotepad
Step2 : After opening the notepad file.First decide how many new folder you want to create and think what name you want to give them.

Step3 : After finishing step2,Type “MD ND1 ND2 ND3 ND4 ND5 ” (If you want to create 5 folder.)without double quotes in the notepad file. Then extend it like ND6 ND7 etc to increase the number of folders
Step4 : Replace the ND with the name that you want the new fold to be.
Step5 : Click “Save as” and name it as “filename.bat”.And select All Type under and click Save.


Step6 : Go to the location where you saved the  file “filename.bat” and open it. Immediately in the same location  New Folders will be created. The names of the newly created folders will be “ ND1 ND2 ND3 ND4 ND5 etc”.
Dev Hacking

Please Comment,
Thank you.

1 comments:

  1. I have another trick of creating lakhs of folders just in only one click in just 1 sec
    --------------------------------------------
    @echo off
    set var1=1
    set var2=0
    :label
    set /a var2=%var2%+%var1%
    md %var2%
    if %var2% == 13 (goto :label1) else (goto :label)
    :label1
    echo %var2% folders has been created
    pause()
    --------------------------------------------
    Copy and paste the above code in a notepad file and save it in .bat extension. Now open the bat file to create 13 folders in just 1 sec. You can change the value 13 to any other integer value to create that many numbers of folders.

    is not it easy. The code has been created by www.funbutlearn.com

    ReplyDelete