Windows 文件夹共享 API
是否有 WIN32 API 可用于管理 Windows 中的文件夹共享? 一些示例链接会有所帮助。 谢谢。
is there a WIN32 API available to manage folder sharing in Windows? Some links to examples will be helpful. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,从 Windows 2000 Professional 开始,netapi32.dll 中提供了一个网络 API,它提供了此功能。 NetShareAdd、NetShareCheck、NetShareDel 等功能可让您管理共享文件。 请参阅
http://msdn.microsoft.com/en-us /library/bb525393(VS.85).aspx
了解更多信息,
Yes, since Windows 2000 Professional there's a networking API available in netapi32.dll which provides this functionality. Functions like NetShareAdd, NetShareCheck, NetShareDel let you manage the shared files. See
http://msdn.microsoft.com/en-us/library/bb525393(VS.85).aspx
for more information,
有 使用 C# 执行此操作的教程,可能是一些帮助?
There is a tutorial for doing this with C#, might be some help?