ea9000 Posted August 5, 2010 Posted August 5, 2010 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
notsure Posted August 5, 2010 Posted August 5, 2010 #Include <File.au3> local $countlines = _FileCountLines("myNiceIni.ini") local $file = FileOpen("myNiceIni.ini", 0) For $x = 1 to $countlines $directory = FileReadLine($file) ;your code here. next Like this?
ea9000 Posted August 5, 2010 Author Posted August 5, 2010 more or less like this ,this read all lines in file ,I need to put a validation that reads a specific ini segment and fetch the lines from it. thanx for the fast replay
smashly Posted August 5, 2010 Posted August 5, 2010 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 EndIfI 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now