FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = PickerLocationId.Downloads;
openPicker.FileTypeFilter.Add(".csv");
StorageFile file = await openPicker.PickSingleFileAsync();
// ローカルフォルダーにfileのコピーをリネームして上書き実行する
StorageFolder targetFolder = ApplicationData.Current.LocalFolder;
var destFile = await file.CopyAsync(targetFolder, "MonthDetails.csv", NameCollisionOption.ReplaceExisting);