通过文件夹选择器访问Windows Phone设备

时间:2016-01-08 10:13:36

标签: c# windows xaml windows-phone uwp

我正在寻找一种从桌面Windows应用程序访问我的Windows手机文件夹(每个USB插件)的方法。为了获得完整的写入和读取权限,我认为这将是使用文件夹选择器的最佳方式。

文件夹选择器工作正常,但存在很大问题。与普通的Windows资源管理器相反,Windows电话设备未列在文件夹选择器中。任何想法如何解决这个问题?

非常感谢

以下是我的文件夹选择器代码:



            FolderPicker selectWpFolder = new FolderPicker();
            selectWpFolder.SuggestedStartLocation = PickerLocationId.ComputerFolder;
            selectWpFolder.FileTypeFilter.Add(".mp3");
            selectWpFolder.FileTypeFilter.Add(".m4a");

            wpMusik = await selectWpFolder.PickSingleFolderAsync();

            if (wpMusik != null) {
              StorageApplicationPermissions.FutureAccessList.AddOrReplace("PickedFolderToken", wpMusik);
            }




1 个答案:

答案 0 :(得分:0)

您的手机是作为便携式设备连接的,而不是磁盘驱动器。因此,您无法在文件夹选择器中看到它。

使用Storage Device Class访问已连接的设备。