2010-03-31 3 views
0

J'ai un document XML comme suit:analyser récursive xmlDocument

<directory> 
<file><monitored>0</monitored> 
<xferStatus>1</xferStatus> 
<name>test1.txt</name> 
<size>7</size> 
<created>03/31/10 11:30:02 AM</created> 
<modified>03/31/10 11:30:00 AM</modified> 
<tPathList><tPath>http://hwcdn.net/p2f4h2b5/cds/testing/test1.txt</tPath> 
</tPathList> 
<tPath>http://hwcdn.net/p2f4h2b5/cds/testing/test1.txt</tPath> 
<oPathList><oPath>http://hwcdn.net/p2f4h2b5/w9m3i4q9/test1.txt</oPath> 
</oPathList> 
<oPath>http://hwcdn.net/p2f4h2b5/w9m3i4q9/test1.txt</oPath> 
<aPath></aPath> 
</file> 

<file><monitored>0</monitored> 
<xferStatus>1</xferStatus> 
<name>GenericDAO.cs</name> 
<size>1843</size> 
<created>03/31/10 11:41:10 AM</created> 
<modified>03/31/10 11:41:10 AM</modified> 
<tPathList><tPath>http://hwcdn.net/p2f4h2b5/cds/testing/GenericDAO.cs</tPath> 
</tPathList> 
<tPath>http://hwcdn.net/p2f4h2b5/cds/testing/GenericDAO.cs</tPath> 
<oPathList><oPath>http://hwcdn.net/p2f4h2b5/w9m3i4q9/GenericDAO.cs</oPath> 
</oPathList> 
<oPath>http://hwcdn.net/p2f4h2b5/w9m3i4q9/GenericDAO.cs</oPath> 
<aPath></aPath> 
</file> 
<nEntries>2</nEntries> 
</directory> 

Eh bien, il y a deux fichiers dans le document, comment puis-je récursive ou itérativement obtenir les fichiers, tailles, etc ..?

La réponse a été sous forme de chaîne, et converti en XML comme suit:

XmlTextReader textReader = new XmlTextReader(hwresponse); 
+0

Demandez-vous un question ici? Qu'est-ce que la "réponse"? – Oded

Répondre

5

Essayez LINQ to XML (espace de noms System.Xml.Linq.) Exemple:

XDocument document = XDocument.Parse(xml); // xml string 
var query = from file in document.Descendants("file") 
      select new 
       { 
        Monitored = (int)file.Element("monitored"), 
        Name = (string)file.Element("name"), 
        Size = (int)file.Element("size") 
       }; 

foreach (var file in query) 
{ 
    Console.WriteLine("{0}\t{1}", file.Name, file.Size); 
}