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.
  1. K

    Windows 10 Can't save to text file with visual c# universal app

    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 =...
Back
Top