使用 Microsoft Visual C 的 FTP 事务6
是否有关于使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您基本上需要一个 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.