문제

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

 ms-appx:///Assets/book.png 

where ms-appx points to the Local app install folder. And you can use as

var uri = new Uri("ms-appx:///Assets/book.png", UriKind.Absolute);

다른 팁

the absolute path will be

ms-appx:///Assets/book.png
var resource = App.GetResourceStream(new Uri("Assets/book.png", UriKind.Relative));
using (StreamReader sr = new StreamReader(resource.Stream)
{
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top