gpt4 book ai didi

C++ WinAPI URLDownloadToFile (urlmon) 错误

转载 作者:行者123 更新时间:2023-11-27 22:58:37 27 4
gpt4 key购买 nike

<分区>

vector<string> DownloadList()
{
LPCSTR site = "somesite.com/uploads/2/9/8/8/29880261/users.txt";
LPCSTR path = "C:\\Users\\Public\\Favorites\\users.txt";
URLDownloadToFile(NULL, site, path , 0, NULL);
ifstream file;
string line;
vector<string> lines;
file.open(path);
while (getline(file, line)) {
lines.push_back(line);
}
file.close();
DeleteFileA(path);
return lines;
}

即使将文件重新上传到站点,程序也会下载并读取之前的文件?旧文件是否保存在内存中或其他东西中?我不明白。旧文件已下载,但新文件已上传并存在于 url 中。我该如何解决这个问题?

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