....//schema goes here#### ########
...//more records here
Any help is much appreciated.
private void OnAddInputChanged(object sender, EventArgs e)
{
string add = addValue.Value;// Get the user input value
string library = DataDirectory + "Library.xml";//create full path to library file
string fileName = add + ".xml"; //create filename ([UserInput].xml)
string source = DataDirectory + fileName;//create full path to newly added file
XmlDocument docLibrary = new XmlDocument();
docLibrary.Load(library);
//load library
XmlDocument docSource = new XmlDocument();
docSource.Load(source);
//load new file
XmlNamespaceManager nsmgrLibrary = new XmlNamespaceManager(docLibrary.NameTable);
nsmgrLibrary.AddNamespace("xsd", "http://www.w3.org/2001/XMLSchema");
//add namespace
XmlNamespaceManager nsmgrNew = new XmlNamespaceManager(docSource.NameTable);
nsmgrNew.AddNamespace("xsd", "http://www.w3.org/2001/XMLSchema");
//add namespace
XmlNode newNode= docSource.SelectSingleNode("//xsd:dataroot/DVD", nsmgrNew);
//load first node from new file
XmlNode libraryRoot = docLibrary.DocumentElement;
//get root element of library file
XmlNode importNewNode = docLibrary.ImportNode(newNode, true);
//import new node
libraryRoot.AppendChild(importNewNode);
//append to the root node
}
Replies
Know the answer? Post it — somebody with the same question will find it here.