R
Royce Fickling
I want to manage, i.e., insert, edit, and retrieve data in
a simple XML file. Here is a sample of the file:
<?xml version="1.0" encoding="utf-8"?>
<Backup>
<Settings Compress="true" RunMinimized="true" />
<InPaths>
<InPath>D:\Proj.net</InPath>
</InPaths>
</Backup>
I can write the file with XmlTextWriter, but how do I edit
a given item, say the InPaths collection, after the file
exists. XmlTextWriter seems limited.
TIA,
Royce
a simple XML file. Here is a sample of the file:
<?xml version="1.0" encoding="utf-8"?>
<Backup>
<Settings Compress="true" RunMinimized="true" />
<InPaths>
<InPath>D:\Proj.net</InPath>
</InPaths>
</Backup>
I can write the file with XmlTextWriter, but how do I edit
a given item, say the InPaths collection, after the file
exists. XmlTextWriter seems limited.
TIA,
Royce