使用 UNC 路径的 File.OpenRead 访问。模仿不起作用?

发布于 2024-10-20 10:42:27 字数 527 浏览 2 评论 0原文

模拟似乎无法使用 File.OpenRead() 处理 UNC 路径是否有原因? 我正在利用 CodeProject 的模拟实用程序

我有一个用户有权分享我传递给 OpenRead() 的内容。

这是我的代码,它没有访问该文件:

try
{
    bool canImp = imp.ImpersonateValidUser(impUser, domain, impPwd);

    FileStream fs = File.OpenRead(filePath);
    logger.Debug("File stream opened...");
    byte[] b = new byte[fs.Length];
    fs.Read(b, 0, b.Length);
    fs.Close();

    // code continued

Is there a reason Impersonation does not seem to work with a UNC path using File.OpenRead()?
I'm utilizing CodeProject's Impersonation utility:

I have a user with rights to the share that I'm passing to OpenRead().

This is my code and it's not accessing the file:

try
{
    bool canImp = imp.ImpersonateValidUser(impUser, domain, impPwd);

    FileStream fs = File.OpenRead(filePath);
    logger.Debug("File stream opened...");
    byte[] b = new byte[fs.Length];
    fs.Read(b, 0, b.Length);
    fs.Close();

    // code continued

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

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

发布评论

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

评论(1

一身软味 2024-10-27 10:42:27

事实证明,我在模拟域时使用的是 IP 地址,而不是友好的域名。
一旦我使用了友好的域名,模拟就成功了。

Turns out I was using the IP address in my impersonation for the domain, rather than the friendly domain name.
Once I used the friendly domain name, the impersonation worked.

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