I'm getting a list of album folders in the user's music library like this:
var _folderList = await KnownFolders.MusicLibrary.GetFoldersAsync(CommonFolderQuery.GroupByAlbum);
However, when I try to get the DateCreated
prop on each folder most of them are showing "12/31/1600 7:00:00 PM" which is, of course, quite wrong. The weird thing is that if I use Windows Explorer to go look at the properties of the folders they show entirely different-- and correct-- values. Has anyone else experienced this problem?