You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
development issues
About this tag
This tag covers development issues encountered when building Windows applications, particularly with Visual C# and Universal Windows Platform (UWP) apps. A common problem is the inability to save changes to text files due to unauthorized access exceptions, as seen when using Windows.Storage.FileIO to write to files in the app's installed location. Discussions focus on troubleshooting file I/O permissions, understanding app package restrictions, and finding workarounds for saving data in UWP environments.
Link Removed
0
I can't save any changes to the text file settings.txt , but reading the file works.
The code is
private async void LedShow_Loaded(object sender, RoutedEventArgs e)
{
var path = @"settings.txt";
var folder =...