所以我有这个简单的代码从打开浏览器的URL下载文件
article{}
但是我希望文件进入当前目录而不是进入默认下载文件夹。我有什么方法可以做到这一点吗?
答案 0 :(得分:1)
如果你在Windows上,你可以使用
#include <iostream>
#include<Windows.h>
#include<string>
#pragma comment(lib, "urlmon.lib")
using namespace std;
int main()
{
string dwnld_URL = "http://www.url.com/downloadpage/filename.txt";
string savepath = "C:\\tmp\\filename.txt";
URLDownloadToFile(NULL, dwnld_URL.c_str(), savepath.c_str(), 0, NULL);
return 0;
}
答案 1 :(得分:0)