newbieme100 Posted November 5, 2010 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.
water Posted November 5, 2010 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 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
newbieme100 Posted November 5, 2010 Author 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
newbieme100 Posted November 5, 2010 Author 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)
MrCreatoR Posted November 5, 2010 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
newbieme100 Posted November 5, 2010 Author 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/
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