title | author | date | CreateTime | categories |
---|---|---|---|---|
win10 uwp 获取文件夹出错 |
lindexi |
2018-08-10 19:16:50 +0800 |
2018-2-13 17:23:3 +0800 |
Win10 UWP |
获取文件夹时出现
Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
代码
FolderPicker fp = new FolderPicker();
fp.SuggestedStartLocation = PickerLocationId.ComputerFolder;
fp.FileTypeFilter.Add("*");
var f = await fp.PickSingleFolderAsync();
上面代码有3个地方错误。
- 需要知道的,在 FileTypeFilter 添加的是具体的类型,不能使用 "
*
"
即使设置为特殊类型,但是文件夹没有这类型的文件也是可以。
这属性对结果好像不会有r用,垃圾ms
-
设置了
PickerLocationId.ComputerFolder
-
代码写在 Load 函数。
需要知道 上面的错误是 写在 Load 函数错误。
修改,把上面代码写在其他函数调用,不在 Load 调用。