如何获取应用程序路径并读取文本文件 Windows Phone 7

发布于 2024-11-24 15:29:23 字数 143 浏览 0 评论 0原文

我的问题很简单......我希望。

  1. 我想获取 Windows Phone 7 中内置应用程序的路径。
  2. 如何读取放置在项目的 BIN 文件夹中的文本文件。

问候;

泽尚·艾哈迈德·汗

My Question is very simple...I hope.

  1. I want to get the path of app built in Windows Phone 7.
  2. How to Read TEXT File that is placed in BIN folder of the project.

Regards;

Zeeshan Ahmed Khan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜你已久 2024-12-01 15:29:23

您必须使用

Application.GetResourceStream(new Uri(_filePath, UriKind.Relative));

其中 _filePath 是文件路径,前面不带“/”,例如“bin/file.txt”。

You have to use

Application.GetResourceStream(new Uri(_filePath, UriKind.Relative));

where _filePath is the Path to your File without a preceding '/', like "bin/file.txt".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文