I have a problem, my internship will be completed soon and I'm stuck on a very small thing...
In a folder I have a number 'n' a files.xml
In these files I have to replace a line (the 6th) "<storeref refid="st1"/>" by "<storeref refid="store1"/>".
So I'm doing that but it's doesn't work, I have to give a name of file ='(
Section
${LineFind} "C:\k3\studies\config\studies\*" "" "6" "DeleteLines"
${LineFind} "C:\k3\studies\config\studies\*" "" "6" "WriteToFile"
SectionEnd
Function WriteToFile
FileWrite $R4 "<storeref refid=$\"store1$\"/>$\r$\n"
Push $0
FunctionEnd
Function DeleteLines
StrCpy $0 SkipWrite
Push $0
FunctionEnd Can you help me please ? Thanks a lot !