5

根据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 没有实现。

还有其他方法可以做到这一点吗?

4

1 回答 1

0

一种方法是获取创建日期并使用ApplicationData.LocalSettings来存储文件路径和创建日期。风险在于您必须确保每次创建文件时都会更新该值。

否则,您可以使用moveAndReplaceAsync移动文件并重置创建日期。

您还可以将值存储在您自己的辅助文件或数据库中,但这将需要在每个文件读取时额外的 IO。(您必须打开两个文件才能获得文件内容和“创建日期”)。

于 2013-11-19T01:19:23.963 回答