I'm trying to use the FileSavePicker for the first time, but I keep getting an "Unspecified error", with no exception source, when I call await picker.PickSaveFileAsync();
I notice the exceptions data dictionary contains a value 'RestrictedErrorObject-{1F77CB5A-D22F-071F-2637-E6B7C7573653}', so I'm assuming it's permission related somehow.
var picker = new Windows.Storage.Pickers.FileSavePicker();
//picker.SuggestedStartLocation = Windows.Storage.Pickers.PickerLocationId.DocumentsLibrary;
//picker.SuggestedStartLocation = Windows.Storage.Pickers.PickerLocationId.Downloads;
//picker.DefaultFileExtension = "csv";
//picker.FileTypeChoices.Add("CSV", new List<string>() { "*.csv" });
picker.SuggestedFileName = fileName;
StorageFile newFile = await picker.PickSaveFileAsync();