如何从SilverLight中的隔离存储获取文件路径?

时间:2013-08-26 07:43:42

标签: c# silverlight-4.0 isolatedstorage

我在Windows应用程序中使用反射获取文件路径但是没有进入Silverlight。

我使用的代码如下:

IsolatedStorageFile store = IsolatedStorageFile.GetStore(IsolatedStorageScope.User | IsolatedStorageScope.Assembly, null, null);
IsolatedStorageFileStream stream  =  new IsolatedStorageFileStream("Text.log", FileMode.Create, store);         
// Retrieve the actual path of the file using reflection.
string path = stream.GetType().GetField("m_FullPath", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(stream).ToString();

Silverlight不支持私有,受保护和内部(程序集外)反射

让我知道如何在silverlight中获取文件路径。

0 个答案:

没有答案