Follow Us On Follow us on Facebook Follow us on Twitter Watch us on YouTube
Register
Results 1 to 2 of 2

Batch Files Can Be Handy

This is a discussion on Batch Files Can Be Handy within the General PC Chat forums, part of the PC Discussions and Advice category; I remember in the old days of DOS when everything was done from the command line (there was no such ...

  1. #1
    Gman496's Avatar
    Super Moderator

    Status
    Online
    Join Date
    Apr 2009
    Posts
    6,277
    Rep Power
    390

    Default Batch Files Can Be Handy

    I remember in the old days of DOS when everything was done from the command line (there was no such things as icons you clicked on).

    Batch files which are basically a series of commands run from within one file are still handy even in today's icon driven world.

    Here's an example of how you can create multiple folders in an instance by running one batch file.

    Try these quick examples for yourself:

    1. Create a new folder on your Desktop (Right click the Desktop & choose New>Folder)

    2. Double click that new folder to open it.

    3. Right click inside that new folder and choose New>Text Document.

    4. Double click that new text document to open it.

    Paste in the following line

    for /l %%n in (1,1,10) DO md %%n

    Save the file

    Rename the file & call it Make Folders.bat

    Now double click your new Batch file.

    It should have created 10 new folders named 1 to 10.


    If you done it all again but pasted in this line instead,


    for /l %%n in (1,1,10) DO md Season" "%%n


    It will create 10 new folders also but this time they will be named Season 1 to Season 10


    -
    HelplineDirect:

    Dropbox: Store, Share and Sync files online and Sync between your computers and mobile devices.

    Get your FREE Dropbox Account:

    A Minute for Madeleine - Please View our message


  2. Thanks hadmad, allybird58 thanked for this post

    • Advertising

      advertising
      Techkings.org
      has no influence
      on advertisings
      that are displayed by
      Google Adsense


        
       

  3. #2
    allybird58's Avatar
    VIP Member

    Status
    Offline
    Join Date
    Apr 2009
    Location
    Dublin
    Age
    61
    Posts
    7,121
    Rep Power
    405

    Default

    Thanks G.More excellent info.

 

 

Similar Threads

  1. Very handy lol
    By moh in forum Comedy Central
    Replies: 18
    Last Post: 06-09-2009, 08:10 PM
  2. This would be handy for us guys
    By moh in forum Comedy Central
    Replies: 10
    Last Post: 17-07-2009, 06:53 AM
  3. 9 handy household tips for the modern woman
    By allybird58 in forum Comedy Central
    Replies: 9
    Last Post: 08-06-2009, 10:02 PM
  4. Replies: 0
    Last Post: 11-05-2009, 11:20 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •