Reading XML in C# or VB



I am tring to read the iTunes Music Library XML in my application however i have no idea on how to do this, what i'm trying to do is to search for a specific track name a specing key, for example "Artist", "Album" etc.. yes, i know how to use iTunes COM but there are some track information that cannot be access through it such as if the Track is "Explicit" there is an additional key



<key>Explicit</key><true/>


what i want to do is search for a specific track name and check if it track has an explicit key.



<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://ift.tt/vvUEPL">
<plist version="1.0">
<dict>
<key>Major Version</key><integer>1</integer>
<key>Minor Version</key><integer>1</integer>
<key>Date</key><date>2014-08-24T05:21:40Z</date>
<key>Application Version</key><string>11.3.1</string>
<key>Features</key><integer>5</integer>
<key>Show Content Ratings</key><true/>
<key>Music Folder</key><string>file://localhost/C:/Users/Mon%20Tolentino/Music/iTunes/iTunes%20Media/</string>
<key>Library Persistent ID</key><string>15CDC06EC711077D</string>
<key>Tracks</key>
<dict>
<key>766</key>
<dict>
<key>Track ID</key><integer>766</integer>
<key>Name</key><string>Say Something</string>
<key>Artist</key><string>A Great Big World</string>
<key>Album Artist</key><string>A Great Big World</string>
<key>Composer</key><string>Ian Axel, Chad Vaccarino, Mike Campbell</string>
<key>Album</key><string>Is There Anybody Out There?</string>
<key>Grouping</key><string>Indie</string>
<key>Genre</key><string>Pop</string>
<key>Kind</key><string>AAC audio file</string>
<key>Size</key><integer>8639959</integer>
<key>Total Time</key><integer>233289</integer>
<key>Disc Number</key><integer>1</integer>
<key>Disc Count</key><integer>1</integer>
<key>Track Number</key><integer>5</integer>
<key>Track Count</key><integer>13</integer>
<key>Year</key><integer>2013</integer>
<key>BPM</key><integer>94</integer>
<key>Date Modified</key><date>2014-05-25T15:58:35Z</date>
<key>Date Added</key><date>2014-05-18T10:09:13Z</date>
<key>Bit Rate</key><integer>256</integer>
<key>Sample Rate</key><integer>44100</integer>
<key>Play Count</key><integer>33</integer>
<key>Play Date</key><integer>3491589574</integer>
<key>Play Date UTC</key><date>2014-08-22T13:59:34Z</date>
<key>Skip Count</key><integer>7</integer>
<key>Skip Date</key><date>2014-08-15T15:15:43Z</date>
<key>Release Date</key><date>2013-11-04T12:00:00Z</date>
<key>Rating</key><integer>60</integer>
<key>Album Rating</key><integer>60</integer>
<key>Album Rating Computed</key><true/>
<key>Artwork Count</key><integer>1</integer>
<key>Sort Album Artist</key><string>A Great Big World</string>
<key>Sort Artist</key><string>A Great Big World</string>
<key>Persistent ID</key><string>50A143EFFA8BEA97</string>
<key>Track Type</key><string>File</string>
<key>Location</key><string>file://localhost/C:/Users/Mon%20Tolentino/Music/iTunes/iTunes%20Media/Music/A%20Great%20Big%20World/Is%20There%20Anybody%20Out%20There_/05%20Say%20Something.m4a</string>
<key>File Folder Count</key><integer>5</integer>
<key>Library Folder Count</key><integer>1</integer>
</dict>


I found this on the web:



Dim itunesLib As XElement = XElement.Load("xmllocation")

Dim itunesPlaylists = From key In itunesLib...<key> Where key.Value = "Name"
Select key.ElementsAfterSelf("string").Value

List1.ItemsSource = itunesPlaylists


but it only list all my tracks in a listbox, can anyone please help me.


No comments:

Post a Comment