0
我目前正在開發一個UWP應用程序,我希望能夠從虛擬SD卡上打開和讀取.txt文件,我正在使用該文件。我遇到的問題是,當我查看該文件時,我想將一個按鈕添加到頁面底部,允許我將該文件的副本保存到本地計算機上的特定位置。以下是當前打開和閱讀文件的代碼。UWP應用程序試圖將文件保存到文件夾
private async void Grid_Loaded(object sender, RoutedEventArgs e)
{
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = PickerLocationId.DocumentsLibrary;
openPicker.FileTypeFilter.Add(".txt");
StorageFile file = await openPicker.PickSingleFileAsync();
if (file != null)
{
var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.Read);
using(StreamReader reader = new StreamReader(stream.AsStream()))
{
txtBLKallCloudReceipts.Text = reader.ReadToEnd();
}
}
}
任何幫助將非常感激。
好吧,很好,非常感謝您的幫助。 Lou – Bobbydazzler
請投票或回答標記這個問題。 – Pratyay