Link to home
Start Free TrialLog in
Avatar of shawnmstout
shawnmstout

asked on

C#.net XML change/add/remove certain xml

I am having a heck of a time understanding how to manipulate xml entries.

basically what i have created is a test directory of xml files

these are for media center movies and im trying to create a genre consolidation program where i can either remove or change the xml information for the genres

i have attached my file structure and my code to this project

under btnRun_Click
you will see the loop that is completing searching for the genre matches
under cbAction.Text == "Change" and cbAction.Text == "delete"

for change
1 is for changing the information which i was thinking would be best done by removing the old genres first and then adding in the new genres

also i need to check to make sure the same genre isnt listed multiple times if it is to only leave 1 instance of it

for delete

this should only delete out the matches in the list

i have attached the whole project but since experts-exchange eliminates some file extentions here is a list of the ones that will need renamed once downloaded

GenreFixer_2/GenreFixer/GenreFixer.csproj.user.txt
change to
GenreFixer_2/GenreFixer/GenreFixer.csproj.user

GenreFixer_2/GenreFixer/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache.txt
change to
GenreFixer_2/GenreFixer/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache


GenreFixer_2/GenreFixer/obj/x86/Debug
DesignTimeResolveAssemblyReferencesInput.cache.txt
change to
GenreFixer_2/GenreFixer/obj/x86/Debug
DesignTimeResolveAssemblyReferencesInput.cache

GenreFixer_2/GenreFixer/obj/x86/Debug/GenerateResource.read.1.tlog.txt
change to
GenreFixer_2/GenreFixer/obj/x86/Debug/GenerateResource.read.1.tlog

GenreFixer_2/GenreFixer/obj/x86/Debug/GenerateResource.write.1.tlog.txt
change to
GenreFixer_2/GenreFixer/obj/x86/Debug/GenerateResource.write.1.tlog

GenreFixer_2/GenreFixer/obj/x86/Debug/GenreFixer.frmGenreFixer.resources.txt
change to
GenreFixer_2/GenreFixer/obj/x86/Debug/GenreFixer.frmGenreFixer.resources

GenreFixer_2/GenreFixer/obj/x86/Debug/GenreFixer.Properties.Resources.resources.txt
change to
GenreFixer_2/GenreFixer/obj/x86/Debug/GenreFixer.Properties.Resources.resources

GenreFixer_2/GenreFixer/Properties/Settings.settings.txt
change to
GenreFixer_2/GenreFixer/Properties/Settings.settings

GenreFixer_2/GenreFixer.suo.txt
change to
GenreFixer_2/GenreFixer.suo

project is in vs2010

   GenreFixer.exe test.zip GenreFixer-2.zip
Avatar of nmarun
nmarun
Flag of India image

I think more useful attachment would have been the xml file itself that you're planning to modify/delete entries from. Just put the xml file (at least a part of it) and tell us what needs to happen in each of the scenarios.

Arun
Avatar of shawnmstout
shawnmstout

ASKER

thats in test.zip file which is attached, i take it you havent looked
Don't you think this is too much work for both you and me? I mean, you took all the pain to rename each and every file and now I'll have to fish out this class that has the button click event that you're talking about. That's the reason why I suggested you to simplify your question. Post the xml, post your logic and tell what it is that you're trying to do and how far you've gone with it.

Please don't get me wrong. I'm very much willing to help you, but all I'm asking you is to ask a specific question that you have.

Arun
its only 10 files to rename, its not like i didnt supply you with everything, but if its too much i understand, i can wait for someone else to help, i appreciate your time
figured out where im getting stuck at, its at the nodes

here is an example

<Title>
    <Genres>
        <Genre>Whatever</Genre>
    </Genres>
</Title>

im trying to add and remove from the <Genre> tag
nevermind i figured it out on my own
please close this out
ASKER CERTIFIED SOLUTION
Avatar of shawnmstout
shawnmstout

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
Glad you were able to resolve this.

Arun