FileOpenPicker - 如何指定自定义启动路径

时间:2017-12-18 10:54:52

标签: c# uwp

你能告诉我如何在文件打开选择器类中指定自定义启动路径吗?

'openPicker.SuggestedStartLocation'未显示自定义路径选项。

谢谢你的阅读!

        FileOpenPicker openPicker = new FileOpenPicker();
        openPicker.ViewMode = PickerViewMode.Thumbnail;
        openPicker.SuggestedStartLocation = PickerLocationId.Desktop;
        openPicker.FileTypeFilter.Add(".xml");            

        StorageFile file = await openPicker.PickSingleFileAsync();


        if(file!=null)
        {                
            var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.Read);

        }
        else
        {
            //
        }

1 个答案:

答案 0 :(得分:1)

我担心您无法为此指定自定义启动路径。您只能使用那里提到的路径。你可以阅读它over here