gpt4 book ai didi

c++ - C++使用套接字从URL下载文件

转载 作者:行者123 更新时间:2023-12-02 09:58:40 45 4
gpt4 key购买 nike

我试图从URL下载文件并保存在某个路径中。
我想做到没有 curl ,所以我想通过套接字。
我没有任何代码,如果您能帮助我,谢谢!

最佳答案

我找到了这段代码,并且效果很好。

#include <urlmon.h>

#pragma comment(lib, "urlmon.lib")
int main(int argc, char *argv[]) {
// download the putty executable to putty.exe in the working directory, error checking omitted
URLDownloadToFile(NULL, "http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe", "putty.exe", 0, NULL);
return 0;
}```

关于c++ - C++使用套接字从URL下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63941438/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com