I try to add a file content to my RichEditBox using this method :
myRichEditBox.Document.LoadFromStream(Windows.UI.Text.TextSetOptions.None, streamFile);
And that is how I fill my streamFile variable :
public static async void openFileAsync(string pathFolder, string file)
{
Windows.Storage.StorageFolder folder = await Windows.Storage.StorageFolder.GetFolderFromPathAsync(pathFolder);
System.Diagnostics.Debug.WriteLine("folder : " + folder.Path);
Windows.Storage.StorageFile fileOpen = await folder.GetFileAsync(file);
System.Diagnostics.Debug.WriteLine("file : " + fileOpen.Path);
Windows.Storage.Streams.IRandomAccessStream stream = await fileOpen.OpenAsync(Windows.Storage.FileAccessMode.Read);
streamFile = stream;
}
I have no exception that rises but the richBoxEdit text is unreadable (characters are unreadable). I want to read txt files.
Thank you in advance for your help.
If you want to use
Stream
to read contents of the File, You can use the method Below. This will return the contents of the file asText
.See the Official Microsoft Documentation for Reference
However if you want to directly load the Text instead of stream, Use Below.
And then assign the data to
RichEditBox
like below.