使用 webclient 在 Windows 7 中的共享文件夹(Windows 文件共享)中创建新文件夹
我想在 Windows 7 网络共享文件夹中创建/删除文件夹。我可以使用 Windows 资源管理器很好地创建/删除文件夹。我可以使用 c# webclient 从文件夹下载文件。但由于 webclient 中没有创建/删除文件夹的方法,我无法使用 webclient 创建/删除文件夹。有没有办法使用 webclient 在 Windows 7 共享文件夹中创建/删除文件夹?或者我应该使用 ftpwebrequest?
谢谢。
I want to create/delete a folder in a Windows 7 network sharing folder. I can create/delete folder just fine using windows explorer. I can download file from the folder just fine using c# webclient. But since there is no method to create/delete folder in webclient, i cant create/delete folder using webclient. is there a way to create/delete folder in a windows 7 shared folder using webclient? or i should use ftpwebrequest?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是网络共享文件夹,那么您应该能够使用标准库来创建文件/文件夹,而无需任何网络代码。请参阅本文,了解如何创建文件夹的说明。假设该文件夹位于一台名为 COMPUTER 的联网计算机上,那么您可以执行类似的操作
If it's a network shared folder then you should be able to use the standard libraries for creating files/folders without any networking code. Take a look at this article for instruction on how to create folders. Let's say the folder is on a networked machine called COMPUTER, then you'd do something like