I am making a Windows 10 UWP App. As part of this app I need to be able to search inside the User Device's Downloads folder (Not the Apps Downloads folder). I have created a Folder Picker for the user to be able to choose the downloads folder themselves. However, I need to do this without the user. Here is My Folder Picker:
FolderPicker picker = new FolderPicker();
picker.FileTypeFilter.Add("*");
picker.ViewMode = PickerViewMode.List;
picker.SuggestedStartLocation = PickerLocationId.Downloads;
StorageFolder folder = await picker.PickSingleFolderAsync();
Is there any way in which I could use something like Folder Picker, but hard-coded so the destination is always set to one place (The Downloads Folder)?