I have an app where I have to store and use the absolute paths of folders and files. I have a very simple problem. When I store the path of a folder like this: "ms-appdata:///local/my_folder" and try to get a StorageFolder from this path, it throws a FileNotFoundException. Why is this exception thrown?
AFAIK "ms-appdata:///local/my_folder" equals "C:\Data\Users\DefApps\AppData\{2F102375-2740-441C-BF2F-808608F47DA1}\Local\my_folder". The latter string is accepted by the GetFolderFromPathAsync static method of StorageFolder. How can I create the latter Uri from the former and vice versa?
Edit: clarified question.