Jump to content

create list of diretories loop from an ini file


Recommended Posts

Hi all,

want to ask if there is way to using "FOR ,NEXT" function or any other loop to read an ini file? my idea to read a certain segment of an ini file and go through the lines to create the directories , later if I add a new line in the ini and run the script (a compiled ) it will fetch the line and create the directory of that line.

thnx in advance

Emad

Link to comment
Share on other sites

Hi,

Global $Ini = @ScriptDir & "\Dir.ini"
Global $aIRS = IniReadSection($Ini, "DIRECTORY")

If Not @error Then
    For $i = 1 To $aIRS[0][0]
        If Not FileExists(@ScriptDir & "\" & $aIRS[$i][1]) Then DirCreate(@ScriptDir & "\" & $aIRS[$i][1])
    Next
EndIf
I used in my Dir.ini
[DIRECTORY]
Dir=Test1\Sub1
Dir=Test2\Sub1\Sub2
Dir=Test3\Sub1\Sub2\Sub3
Dir=Test4\Sub1\Sub2\Sub3\Sub4

Cheers

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...