从 System32 内的文件夹加载 XML 文件以获取 wcf (.svc) C# 代码

发布于 2025-01-04 22:06:01 字数 260 浏览 1 评论 0原文

我想从 wcf (.svc.cs) 内的方法加载位于 system32 内的应用程序文件夹之一中的 xml 文件。

我尝试使用共享驱动器,将共享驱动器映射为 Z: 并使用直接路径 C:\Windows\System32\WindowsPowerShell\v1.0\Modules\App 在所有情况下我得到 System.IO.DirectoryNotFoundException

是否可以从 System32 读取 xml 文件,请告诉我,

谢谢 迪帕克

I want to load a xml file located in one of the application folder located inside the system32 from a mehod inside the wcf (.svc.cs).

I tried using the shared drive, mapping the shared drive as Z: and also using direct path C:\Windows\System32\WindowsPowerShell\v1.0\Modules\App in all the cases I get System.IO.DirectoryNotFoundException

Is it possible to read xml file from the System32, please let me know

Thanks
Deepak

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

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

发布评论

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

评论(2

行至春深 2025-01-11 22:06:01

是否可以从System32读取xml文件

是的,但您需要在对此文件夹具有读取权限的帐户下运行应用程序。你提到了WCF。如果您在 IIS 内托管此服务,请确保应用程序池配置有这样的帐户。

Is it possible to read xml file from the System32

Yes, but you need to run your application under an account that has read permissions to this folder. You mentioned WCF. If you are hosting this service inside IIS ensure that the application pool is configured with such an account.

倾其所爱 2025-01-11 22:06:01

您必须向运行 WCF 服务主机的用户帐户授予对该目录的权限。

You have to grant permissions to the directory to the user account which your WCF service host is running as.

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