Save FolderPicker location for next time in windows 10 universal apps c#

572 Views Asked by At

I am getting file by using FolderPicker from device, by using this below code.

FolderPicker pk = new FolderPicker();

        pk.SuggestedStartLocation = PickerLocationId.Downloads;
        pk.ViewMode = PickerViewMode.Thumbnail;
        pk.FileTypeFilter.Add("*");

        var folder = await pk.PickSingleFolderAsync();

        var files =await folder.GetFilesAsync();

        foreach (var files in files)
        {

        }

For each time i have to pick the folder location, for that reason i want to save the folder location first time, when i open app next time get the file from that path, any one please help me to achieve this.

Thank you,

2

There are 2 best solutions below

1
On BEST ANSWER
1
On

Use the FolderPicker.SettingsIdentifier for that. If you set the value to something like "My Downloads" then the next time you use the picker, it will start in the location you picked previously.