枚举网络共享
.net 框架是否有一部分可以枚举主机上的文件共享?我发现了一些使用 WMI 的东西,但我不想走那条路。
Is there a part of the .net framework that enumerates the file shares on a host? I've found some things that use the WMI, but I'd prefer not to go that route.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 NetShareEnum win32 api。
http://www.pinvoke.net/default.aspx/netapi32/netshareenum.html
或者看看下面的项目,它是 .NET 包装器。
http://www.codeproject.com/KB/IP/networkshares.aspx
You can use NetShareEnum win32 api.
http://www.pinvoke.net/default.aspx/netapi32/netshareenum.html
Or look at the following project which is .NET Wrapper over it.
http://www.codeproject.com/KB/IP/networkshares.aspx