I have a folder with text files needed to launch the uwp desktop application I'm working on. I include this folder in the project. The question is how to read the existing text files in the folder? I tried the code below, but it didn't work. Throws a bad path exception.
string strPath = "ms-appx:///MyData/structure.txt";
string strStructure = File.ReadAllText(strPath);