如何在网络驱动器中创建文件夹
要在它生成的本地驱动器中创建动态文件夹,如果假设我们需要在网络路径中创建一个文件夹意味着错误说无法访问该路径被拒绝,如何解决此问题,我正在 vb.net 上工作
To create a dynamic folder in local drive it was generating, if suppose we need to create a folder in network path means error say that cannot access to the path is denied, how to resolve this issue , i m working on vb.net
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与在本地驱动器上创建目录相同,通过 Directory.CreateDirectory -当然,需要将共享设置为允许创建目录,并且您的应用程序(特别是线程)的用户也需要具有足够的权限。
Same as creating a directory on a local drive, via Directory.CreateDirectory - Of course, the share needs to be set up to allow directory creations, and the user that your application (and specifically the thread) needs to have sufficient permissions as well.