3

获取为文件创建的数据很容易

StorageFile myFile = await storageFolder.GetFileAsync("myfile");
var dateCreated = myFile.DateCreated;

但是没有对应的myFile.DateModified。

无论如何要获得数据修改属性?

4

3 回答 3

2

根据 Ari Polski “您可以通过 BasicProperties 修改日期”

http://social.msdn.microsoft.com/Forums/no/winappswithcsharp/thread/0f3b989a-fb20-4313-b9ea-61aec477dc63

于 2012-06-20T10:34:25.200 回答
1

我无法获得 BasicProperties,这可能已在 RP 中删除。我的解决方案是复杂的

var check = new list<string>(); 
check.Add("System.DateModified"); 
var props = await myFile.Properties.RetrievePropertiesAsync(check); 
var dateModified = props.SingleOrDefault().Value; 

呸,那是辛苦的工作

于 2012-06-20T15:09:25.103 回答
0

(await file.GetBasicPropertiesAsync()).DateModified 做同样的事情

于 2013-04-06T14:51:00.207 回答