Hi guys!
I am currently writing a small project and I have to deal with xml file. The file has got following structure:
And though I tried every trick known to me ( & Dr. Google) i do not know how to read, delete and write the value of:
<property value="C:\temp" name="Temp Folder"/>
simply I want to change the "C:\temp" to smth else...
I would be glad If somebody would help with this...
Kapik
I am currently writing a small project and I have to deal with xml file. The file has got following structure:
Code:
<project>
<configurations>
<configuration description>
<graph>
<filter id ="xx" alias="Twin">
<settings>
<property value="C:\temp" name="Temp Folder"/>
</settings>
</filter>
</graph>
</configuration description>
</configurations>
</project>
<property value="C:\temp" name="Temp Folder"/>
simply I want to change the "C:\temp" to smth else...
I would be glad If somebody would help with this...
Kapik
Comment