Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove xml nodes from xml document

Tags:

dom

c#

xml

I have a XMLDocument like:

<Folder name="test">
         <Folder name="test2">
              <File>TestFile</File>
         </Folder>
 </Folder>

I want only the folder´s, not the files. So, how to delete / manipulate the XML Document in c# to delete / remove ALL elements in the document?

Thanks!

like image 687
awex Avatar asked Jan 22 '23 06:01

awex


2 Answers

If you can use XDocument and LINQ, you can do

XDocument doc = XDocument.Load(filename) // or XDocument.Parse(string)
doc.Root.Descendants().Where(e => e.Name == "File").Remove();

-- edited out an error

like image 193
Jens Avatar answered Jan 26 '23 00:01

Jens


To remove a node from an XMLDocument (see Jens' answer for remove node form XDocument)

XmlDocument doc = XmlDocument.Load(filename); // or XmlDocument.LoadXml(string)
XmlNodeList nodes = doc.SelectNodes("//file");
foreach(XmlNode node in nodes) {
   node.ParentNode.RemoveChild(node);
}

Watch for the possible null exception if node.ParentNode is null.

like image 29
Matt R Avatar answered Jan 26 '23 01:01

Matt R