如何获取IsolatedStorage中文件的路径?

时间:2013-09-08 18:07:20

标签: c# windows-phone-7 windows-phone-8 windows-phone isolatedstorage

我想设置一个存储在IsolatedStorage中的图像作为图块的背景图像。

我们以这种方式创建图块:

StandardTileData tile = new StandardTileData();

现在tile.BackgroundImage接受Uri。在IsolatedStorage中/MyFolder/MyFile.png中的图像的完整路径是什么?

2 个答案:

答案 0 :(得分:2)

tile.BackgroundImage = new Uri("isostore:/MyFolder/MyFile.png", UriKind.Absolute);

以下是有关WP8中数据的更多信息:http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402541(v=vs.105).aspx

答案 1 :(得分:-1)

试试这个



  StorageFolder folder = ApplicationData.Current.LocalFolder;
                 
                var path = folder.Path;