I know a file's relative path:
Uri("/Assets/book.png", UriKind.Relative)
But what is its absolute path? I want to use it here:
using (StreamReader sr = new StreamReader(completePath)
{
}
I know a file's relative path:
Uri("/Assets/book.png", UriKind.Relative)
But what is its absolute path? I want to use it here:
using (StreamReader sr = new StreamReader(completePath)
{
}
The absolute image path is
where ms-appx points to the Local app install folder. And you can use as