以编程方式将 FTP 和 SFTP 映射为 Windows 中的网络驱动器(网络重定向器)

发布于 2024-12-05 06:44:08 字数 190 浏览 1 评论 0原文

我已经分配了一个内部任务,我需要在C#中编写Windows应用程序,当用户输入其用户名和密码时,Windows将FTP或SFTP文件夹神奇地映射为网络驱动器。

我已经进行了一些研究,似乎“网络重新指导”是我问题的答案。

我对Windows的东西不是很熟悉,有人可以告诉我这是否是正确的方向?还是您有更好的线索?

谢谢。

I have been assigned an internal task that i need to write a Windows App in C# that, when user input their username and password, Windows magically map the FTP or SFTP folder as a network drive.

I have go through some research and seems "Network Redirector" is the answer of my question.

I am not very familiar with windows thingies, can anyone tell me if this is the right direction? Or you have better clues?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

俯瞰星空 2024-12-12 06:44:08

您需要创建一个由FTP或SFTP服务器支持的虚拟文件系统。可以使用我们的回调文件系统库(FTP或SFTP零件可以使用我们的其他产品完成) ,SecureBlackBox)。还有Dokan库,该图书馆试图在Windows上模仿融合并创建虚拟磁盘。

如果您可以使用最终用户解决方案,我们实现了 free sftp NET驱动器使用我们的回调文件系统并将SFTP服务器映射到虚拟驱动器的应用程序。

You need to create a virtual file system backed by FTP or SFTP server. This can be done using our Callback File System library (FTP or SFTP part can be accomplished using our other product, SecureBlackbox). There also exists Dokan library, which attempts to mimic FUSE on Windows and create a virtual disk.

If you can go with an end-user solution, we implemented free SFTP Net Drive application that uses our Callback File System and maps SFTP server to a virtual drive.

幸福还没到 2024-12-12 06:44:08

WebDrive 映射网络驱动器FTP 和 SFTP 服务器,并支持 FTP over SSL。有一个 API 可让您以编程方式映射和取消映射驱动器。 WebDrive 帮助文件中详细介绍了支持的命令。转到“高级主题”部分,查看“自动化连接”以及“脚本和批处理文件”部分的主题。

WebDrive maps a network drive to FTP and SFTP servers and supports FTP over SSL. There is an API that lets you programmatically map and unmap the drive. Supported commands are detailed in the WebDrive help file. Go to the "Advanced Topics" section and look at the topics on "Automating Connections" as well as the "Scripting and Batch Files" section.

雨巷深深 2024-12-12 06:44:08

已经有一个免费的工具,称为 ftpuse 用于通过命令线将ftp目录映射到命令行中。它不支持SFTP。也许这是通过编程安装FTP资源的最简单方法。

There is already a free tool called FtpUse for mapping FTP directories to a drive letter via command line. It does not support SFTP. Maybe this is simplest approach to mount a FTP resource programmatically.

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