newbieme100 0 Posted November 5, 2010 I have two *.ini files, which I want to compare, find all the differences and re-write the values that differ,from the second ini file to the first one.There's a similar topic: http://www.autoitscript.com/forum/index.php?showtopic=82466but I don't know how to implement my variables.Thanx for your help. Share this post Link to post Share on other sites
water 2,392 Posted November 5, 2010 You could read the two ini files into two arrays using _FileReadToArray. Then get the differences with the script you mentioned. Then use the InIWrite* commands to update the ini file. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
newbieme100 0 Posted November 5, 2010 You could read the two ini files into two arrays using _FileReadToArray. Then get the differences with the script you mentioned. Then use the InIWrite* commands to update the ini file.Then I get a result that makes no sense, please see the attached picture.This is how I wrote the variables:Dim $1stINI, $2ndINILocal $1 = _FileReadToArray("text1.ini",$1stINI)Local $2 = _FileReadToArray("text2.ini",$2ndINI)Local $ret = _GetIntersection($1, $2, 0, ',')If IsArray($ret) Then _ArrayDisplay($ret)$ret = _GetIntersection($1, $2, 1, ',')If IsArray($ret) Then _ArrayDisplay($ret)Could you help me define them correctly so this piece of work script can do the magic? Thanx a lot Share this post Link to post Share on other sites
newbieme100 0 Posted November 5, 2010 Then I get a result that makes no sense, please see the attached picture.This is how I wrote the variables:Dim $1stINI, $2ndINILocal $1 = _FileReadToArray("text1.ini",$1stINI)Local $2 = _FileReadToArray("text2.ini",$2ndINI)Local $ret = _GetIntersection($1, $2, 0, ',')If IsArray($ret) Then _ArrayDisplay($ret)$ret = _GetIntersection($1, $2, 1, ',')If IsArray($ret) Then _ArrayDisplay($ret)Could you help me define them correctly so this piece of work script can do the magic? Thanx a lotOk, here was my mistake: (instead of $1stINI, $2ndINI i wrote $1, $2)Local $ret = _GetIntersection($1stINI, $2ndINI, 0, ',')If IsArray($ret) Then _ArrayDisplay($ret)$ret = _GetIntersection($1stINI, $2ndINI, 1, ',')If IsArray($ret) Then _ArrayDisplay($ret) Share this post Link to post Share on other sites
MrCreatoR 153 Posted November 5, 2010 And why this topic is in the Examples forum? Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team Share this post Link to post Share on other sites
newbieme100 0 Posted November 5, 2010 And why this topic is in the Examples forum? Sorry, it has to go here?http://www.autoitscript.com/forum/forum/2-general-help-and-support/ Share this post Link to post Share on other sites