我正在使用Windows应用商店应用(Windows 8.1,使用VS2012),而且我无法检索特定存储文件夹中的可用/已用空间,这是从储存设备。需要说明的是,此应用程序可以在桌面上运行,并通过存储设备API与USB设备交换文件。
这就是我现在所拥有的:
StorageFolder folder = Windows.Devices.Portable.StorageDevice.FromId(phoneId);
UInt64[] info = new UInt64[] {};
var properties = await folder.Properties.RetrievePropertiesAsync(
new string[] { "System.FreeSpace", "System.Capacity" });
if (properties.ContainsKey("System.FreeSpace") && properties.ContainsKey("System.FreeSpace"))
{
info = new UInt64[] {
(UInt64) properties["System.FreeSpace"],
(UInt64) properties["System.Capacity"]
};
}
return info;
但没有成功,'info'总是一个空数组。有什么想法吗?
答案 0 :(得分:1)
我发现了我做错了什么。我的StorageFolder对象代表连接到桌面的手机。如果有人浏览资源管理器并访问Phone文件夹,则会看到其“内部文件夹”,即手机中的实际存储文件夹(例如内部存储,SD卡等)。
使用手机执行此操作的正确方法是访问子文件夹(即每个内部存储空间)。我现在使用的代码:
StorageFolder folder = Windows.Devices.Portable.StorageDevice.FromId(phoneId);
var data = new List<Tuple<string, UInt64[]>> { };
IReadOnlyList<StorageFolder> subFolders = await folder.GetFoldersAsync();
foreach (StorageFolder subFolder in subFolders)
{
var props = await subFolder.Properties.RetrievePropertiesAsync(
new string[] { "System.FreeSpace", "System.Capacity" });
if (props.ContainsKey("System.FreeSpace") && props.ContainsKey("System.Capacity"))
{
data.Add(Tuple.Create(
subFolder.Name,
new UInt64[] {
(UInt64) props["System.FreeSpace"],
(UInt64) props["System.Capacity"]
}));
}
}
return data;