使用 webclient 在 Windows 7 中的共享文件夹(Windows 文件共享)中创建新文件夹

发布于 2024-10-25 06:32:42 字数 230 浏览 1 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亽野灬性zι浪 2024-11-01 06:32:42

如果它是网络共享文件夹,那么您应该能够使用标准库来创建文件/文件夹,而无需任何网络代码。请参阅本文,了解如何创建文件夹的说明。假设该文件夹位于一台名为 COMPUTER 的联网计算机上,那么您可以执行类似的操作

public class CreateFileOrFolder
{
    static void Main()
    {
        string activeDir = @"\\COMPUTER";
        string newPath = System.IO.Path.Combine(activeDir, "myNewFolder");

        System.IO.Directory.CreateDirectory(newPath);
    }
}

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

public class CreateFileOrFolder
{
    static void Main()
    {
        string activeDir = @"\\COMPUTER";
        string newPath = System.IO.Path.Combine(activeDir, "myNewFolder");

        System.IO.Directory.CreateDirectory(newPath);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文