문제

I'm building a metro app, and I'm trying to get a Uri of an Image after saving it in the StorageFile, this is my code:

StorageFile file = await ApplicationData.Current.LocalFolder.CreateFileAsync("samplefile.dat", CreationCollisionOption.ReplaceExisting);

IRandomAccessStream raStream = await file.OpenAsync(FileAccessMode.ReadWrite);
IOutputStream outStream = raStream.GetOutputStreamAt(0);
DataWriter dw = new DataWriter(outStream);
dw.WriteBytes(img); // I'm saving array of bytes
await outStream.FlushAsync();

I read this article:

and it says I can access the stored files using ms-appdata, so i tried this:

Uri uri = new Uri("ms-appdata:///samplefile.dat", UriKind.Absolute);

but it doesnt work

도움이 되었습니까?

해결책

Assuming it is stored in the Local folder, the URI should be

Uri uri = new Uri("ms-appdata:///local/samplefile.dat");

Note the additional "local" in the middle.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top