使用 Microsoft Visual C 的 FTP 事务6

发布于 2024-11-04 15:04:19 字数 82 浏览 0 评论 0原文

是否有关于使用 Microsoft Visual C++ 6 使用 C 语言而不是 C++ 进行 FTP 事务(如下载、上传和文件/目录列表)的教程?

Is there any tutorial about FTP transactions(like download, upload and files/directory listings) using Microsoft Visual C++ 6 using C language instead of C++?

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

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

发布评论

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

评论(1

把昨日还给我 2024-11-11 15:04:19

您基本上需要一个 WinInet FTP 客户端,它是用于此类事情的 Win32 API。您可以直接用 C 语言完成所有这些操作。

这里有一篇不错的文章:

http://www. teksoftco.com/articles/ftp%20client.htm

但要点是:您使用 InternetOpen/InternetConnect 来获取连接,然后使用FtpOpenFile/FtpGetFile/FtpPutFile 等。有 FtpFindFirstFile/NextFile 来枚举目录,以及其他用于询问当前目录、删除文件等的方法。

You basically want a WinInet FTP client, which is the Win32 API for this kind of thing. You can do all this in straight C.

There's a decent writeup here:

http://www.teksoftco.com/articles/ftp%20client.htm

but the gist is: you use InternetOpen/InternetConnect to get a connection, then use FtpOpenFile/FtpGetFile/FtpPutFile etc. There are FtpFindFirstFile/NextFile to enumerate directories, and other methods for interrogating your current directory, deleting files, etc.

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