gpt4 book ai didi

isolatedstorage - 如何获取隔离存储文件的完整路径

转载 作者:行者123 更新时间:2023-12-04 07:16:14 25 4
gpt4 key购买 nike

如何获取 WPF 应用程序的隔离存储文件的完全限定路径?

最佳答案

您可以使用反射来做到这一点,如 linked 所示。论坛帖子:

IsolatedStorageFileStream oStream =
new IsolatedStorageFileStream(ISOLATED_FILE_NAME, FileMode.Create, isoStore);

// Get the physical path using reflection

String filePath = oStream.GetType().GetField("m_FullPath",
BindingFlags.Instance | BindingFlags.NonPublic).GetValue(oStream).ToString();
Console.WriteLine(filePath);

关于isolatedstorage - 如何获取隔离存储文件的完整路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3781446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com