Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读这篇文章,发现大多数人使用 libcurl 作为 c++ 库来使用 ftp,但我知道 windows 有一个内置的 ftp 客户端,难道不能用它来代替吗?我的意思是,它也会节省很多空间,即使你只是向cmd发送命令,也可以做到,但是为什么没有人这样做呢?是像懒惰的编程还是什么?类似于使用 goto?
如果您需要上传/下载大量文件、处理错误、进行进度等,那么使用库会更容易。如果您只需要从远程服务器中提取文件,那么命令行工具会更简单。
windows ftp 客户端可以在登录后运行一系列命令,但如果您需要这种额外的复杂性,使用库可能更容易。