当我尝试从 Windows 8 照片应用程序共享时从共享目标的 GetStorageItemsAsync() 调用传回给我的 IStorageItems 的路径时,返回的所有项目的路径属性为空。名称(文件名)已正确填充。但是,我需要实际的路径,而且似乎没有办法获得它。
这是 Windows 8 的照片应用程序中的错误,还是我做错了什么?
我获取项目列表的代码:
this.sharedStorageItems = await this.shareOperation.Data.GetStorageItemsAsync();
我的代码遍历列表:
// Display the name of the files being shared.
var files = new List<String>();
for (int index = 0; index < this.sharedStorageItems.Count; index++)
files.Add(String.Concat(this.sharedStorageItems[index].Path, "\\", this.sharedStorageItems[index].Name));
上面的路径总是空的。