根据http://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.storagefile.datecreated.aspx, StorageFile.DateCreated 是只读的。
在桌面上,我可以这样做:
IStorageFile file = ...
DateTime date = ...
BasicProperties props = await file.GetBasicPropertiesAsync();
var changes = new List<KeyValuePair<string,object>>();
changes.Add(new KeyValuePair<string, object>("System.DateCreated", date));
await props.SavePropertiesAsync(changes);
但在 WP8 上,BasicProperties.SavePropertiesAsync 没有实现。
还有其他方法可以做到这一点吗?