我怎样才能访问非共享文件夹

发布于 2024-11-09 10:15:54 字数 81 浏览 0 评论 0原文

我在服务器上有一个非共享文件夹,我想通过 C# 代码从客户端访问它。有什么方法可以做到这一点吗?如果是的话怎么办?

请帮忙 提前致谢

I have an unshared folder on server and i want to access to it from clients by c# code.Is there any way to do this? If yes how?

please help
thanks in advance

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

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

发布评论

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

评论(2

ζ澈沫 2024-11-16 10:15:54

如果您是管理员(或域管理员),那么您可以使用隐式共享的 C$。

如果该文件位于名为 myserver 的服务器上的“c:\foo\bar.html”,请尝试以下操作:

   \\myserver\c$\foo\bar.html

请注意,这仅在您是服务器管理员时才有效。

If you are a admin (or domain admin) then you can use the implicitly shared C$.

If the file is at 'c:\foo\bar.html' on server named myserver, then try this:

   \\myserver\c$\foo\bar.html

Note that this only works when you are an administrator of the server.

飘过的浮云 2024-11-16 10:15:54

如果不共享,则无法共享。 - 服务器所有者/管理员选择(隐式或显式)不允许其他计算机的客户端访问它。您需要联系服务器所有者以获取需要共享的文件夹(可能使用某些 ACL 来限制谁可以访问它)。

If it's not shared, then you can't. - the server owner / admin chose (implicitly or explicitly) to not allow clients from other machines to access it. You'll need to contact the server owner to get the folder you need shared (possibly with some ACLs to limit who can access it).

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