如何使用 net use 将 samba 服务器驱动器映射到 C# 中的某个本地驱动器?
如何使用 net use 将 samba 服务器驱动器映射到 C# 中的某个本地驱动器? 以及如何在 Windows 资源管理器(如窗口)中显示它们?
任何代码片段都受到高度赞赏。 提前致谢。
how to map samba server drive to some local drive in C# using net use ?
And how to display them in Windows explorer like window ?
Any code snippet is highly appreciated.
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议创建一个包含要执行的命令的批处理文件,然后从 C# 应用程序调用该批处理文件。这确保了如果您需要更改 net use 命令,它会得到很好的封装。
myBatchFile.cmd
应用程序代码
您需要将此使用添加到您的应用程序中。
有关 Process 的详细信息,请参阅此处。开始:
您能否详细说明“以及如何在Windows资源管理器中显示它们,例如窗口?”
I would recommend creating a batch file which contains the command you want to execute and then call this batch file from your C# application. This ensures if you need to change the net use command it is well encapsulated.
myBatchFile.cmd
Application code
You will need to add this using to your application.
See here for more information on Process.Start:
Can you expand on "And how to display them in Windows explorer like window ?"