Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Folders creation from a selection list  (Read 2273 times)

0 Members and 1 Guest are viewing this topic.

Fielding

    Topic Starter


    Rookie

    • Experience: Beginner
    • OS: Windows 7
    Folders creation from a selection list
    « on: August 16, 2018, 04:02:55 PM »
    I am searching for a free program able to create folders from a selection list .
    The selection list is preconfigured in an ini file or similar.
    I can select one or more of those folder names with the usual combination shift or control keys from the list.

    Do you know a program for this ?

    Thank you !

    Mark.



      Adviser
    • Forum Regular
    • Thanked: 67
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 10
    Re: Folders creation from a selection list
    « Reply #1 on: August 16, 2018, 05:18:14 PM »
    apart from your Ctrl and Shift requirement, it sounds like a perfect situation for a BAT file using the FOR loop.
    something like for /f "delims=" %%I in (selectlist.ini) do MD "%%I"