I'm using a COM object to read an iTunes library (version 11, Windows). I call the GetITObjectByID
function to retrieve a bunch of tracks from a list saved in a text file in a previous iTunes session.
GetITObjectByID(SourceID, PlaylistID, TrackID, DatabaseID)
I would like to know at what extent these IDs are persistent? If they change over time, what kind of events can cause these changes? This will help me assess how reliable are the saved IDs and if I need tho refresh my ID database at each execution of my app.
Thanks.