mohan93 Posted May 15, 2014 Share Posted May 15, 2014 Hey Guys, Hope this is a simple task for most of us, But am lost here by not using a proper command. Scenario is, 1. I have a file under Appdata location, in which i want to change a value. File location: C:Usersef_U274864AppDataLocalSmartView3.2.639.0user.config Inside this file in line 29 i have the below line hardcoded to particular user. <value>C:UsersMohanComputerAppDataRoamingFlukeSmartView3.2.639.0DefaultUserSettings.xml</value> when want to replace the name harcoded here so that this file can be used in other machine with there particular user name. like after replacing <value>C:UsersShyamComputerAppDataRoamingFlukeSmartView3.2.639.0DefaultUserSettings.xml</value> i used the below code to replace the whole line 29. #include <File.au3> $File = @AppDataDir & "LocalSmartView3.2.639.0user.config" $Replace = <value>@AppDataDirRoamingFlukeSmartView3.2.639.0DefaultUserSettings.xml</value>; MsgBox(1, "File location", $File) _FileWriteToLine($File, 29, $Replace, 1) Am not successfull in using the script. Any anyone help me with different approach for changing the harcoded username entry in the file. Thanks in Advance. Cheers, Mohan Link to comment Share on other sites More sharing options...
mohan93 Posted May 15, 2014 Author Share Posted May 15, 2014 Hey Guys, Hope this is a simple task for most of us, But am lost here by not using a proper command. Scenario is, 1. I have a file under Appdata location, in which i want to change a value. File location: C:Usersef_U274864AppDataLocalSmartView3.2.639.0user.config Inside this file in line 29 i have the below line hardcoded to particular user. <value>C:UsersMohanComputerAppDataRoamingFlukeSmartView3.2.639.0DefaultUserSettings.xml</value> when want to replace the name harcoded here so that this file can be used in other machine with there particular user name. like after replacing <value>C:UsersShyamComputerAppDataRoamingFlukeSmartView3.2.639.0DefaultUserSettings.xml</value> i used the below code to replace the whole line 29. #include <File.au3> $File = @AppDataDir & "LocalSmartView3.2.639.0user.config" $Replace = <value>@AppDataDirRoamingFlukeSmartView3.2.639.0DefaultUserSettings.xml</value>; MsgBox(1, "File location", $File) _FileWriteToLine($File, 29, $Replace, 1) Am not successfull in using the script. Any anyone help me with different approach for changing the harcoded username entry in the file. Thanks in Advance. Cheers, Mohan Link to comment Share on other sites More sharing options...
jguinch Posted May 15, 2014 Share Posted May 15, 2014 (edited) Something like this ? #Include <File.au3> Local $sFile = "C:\Users\ef_U274864\AppData\Local\SmartView\3.2.639.0\user.config" Local $sReplace = "<value>" & @AppDataDir & "\Fluke\SmartView\3.2.639.0\DefaultUserSettings.xml</value>" Local $aOriginal = FileReadToArray($sFile) Local $aNew [ UBound($aOriginal)] For $i = 0 TO UBound($aOriginal) - 1 If StringRegExp( $aOriginal[$i], "<value>C:\\Users\\\w+\\AppData\\Roaming\\Fluke\\SmartView\\3\.2\.639\.0\\DefaultUserSettings\.xml</value>") Then $aNew[$i] = $sreplace Else $aNew[$i] = $aOriginal[$i] EndIf Next _FileWriteFromArray($sFile, $aNew) Edited May 15, 2014 by jguinch Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF Link to comment Share on other sites More sharing options...
mikell Posted May 15, 2014 Share Posted May 15, 2014 (edited) mohan93, Your code is correct except for this $Replace = "<value>" & @AppDataDir & "\Fluke\SmartView\3.2.639.0\DefaultUserSettings.xml</value>;" Edit I'm running XP so not sure about the 'roaming' Edited May 15, 2014 by mikell mohan93 1 Link to comment Share on other sites More sharing options...
FireFox Posted May 15, 2014 Share Posted May 15, 2014 Hi, Your replacement syntax string is wrong, you need to wrap it inside quotes or single quotes. Plus, you can't concat anything (here the AppDataDir) without the & character. $Replace = "<value>" & @AppDataDir & "\Roaming\Fluke\SmartView\3.2.639.0\DefaultUserSettings.xml</value>" Br, FireFox. Link to comment Share on other sites More sharing options...
jguinch Posted May 15, 2014 Share Posted May 15, 2014 there is a double-post : http://www.autoitscript.com/forum/topic/161398-replace-a-value-in-a-text-file/ Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF Link to comment Share on other sites More sharing options...
mikell Posted May 15, 2014 Share Posted May 15, 2014 Firefox, http://www.autoitscript.com/forum/topic/161398-replace-a-value-in-a-text-file/#entry1171616 Link to comment Share on other sites More sharing options...
FireFox Posted May 15, 2014 Share Posted May 15, 2014 huh... Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted May 15, 2014 Moderators Share Posted May 15, 2014 mohan93,Threads merged. In future, please stick to a single thread. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
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