Link to home
Start Free TrialLog in
Avatar of metta0_3
metta0_3

asked on

C#. LINQ TO XML

Below is just a sample of my xml that I want to add too. What I want to do is be able to traverse through adding information to each parent foler.
In my example below folder name="national" has numberOfRecords 2 as it only has 2 as the total number of records inside that folder. Whereas folder
name outlet has a total number of records equal to seven as there are seven files under it. and so does folder name C, and so on. I want to be able
to traverse through and add a new attribute (numberOfRecords) to folders, national, outlet & C. I am trying to make this completely
generic so that whatever is added, can also be correctly calulated. I mean each folder can have as many folders as can be, each with as many files as can be.

I am using C#. LinqToXML, Basically I dont want to use the words folder and file at all, I want to do it all using LINQS alternative to XPATH AXES.

I know it sounds complex. Though I'm sure it is not to someone out there as it is a fairly common task to perform.

Thanks in advance.
<?xml version="1.0" encoding="utf-8"?>
<myData>
  <items id="0">
    <folder name="C">
      <folder  name="outlet">
        <folder name="national" >
          <folder name="dir2" numberOfRecords="0"/>
          <folder name="dir3" numberOfRecords="2">
            <file name="tester"  />
            <file name="helper" />
          </folder>
          <folder numberOfRecords="5" />
            <file name="help"  />
            <file name="tester2" />
            <file name="tester3" />
            <file name="tester4" />
            <file name="tester5" />
          </folder>
        </folder>
      </folder>
    </folder>
  </items>
</myData>

Open in new window

Avatar of disrupt
disrupt
Flag of United States of America image

This link will give you an example how you can get values, remove and update.
http://www.xmlplease.com/update-xml-linq
http://stackoverflow.com/questions/670563/linq-to-read-xml-c
ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of metta0_3
metta0_3

ASKER

Hi, thanks for your help. I was hoping to use XPATH axes. This is great what you have given me. Essentially folder is just an example. There is about 10 different things that can be in its place, all called different things. So I want it too just look at it as a node regardless of what it is called. Just to save code. Otherwise I have to write what you have provided for each node other than folder.

I do also want the item attribute to consist of numberOfRecords, because it is the top level element, so will store the totals. myData element is just a wrapper.

Its ok though, its not a problem using the nodenames I was just hoping for an alternative, I will use it your way, using logical AND, will award you kaufman once it is doing as desired.
Right, I used your way and it resolved the issue completely. I just called every node folder and then created an attribute called type. Then just used your code and it was brilliant.

Thanks for your help.