#include <tchar.h>
#include <iostream>
#include <string>
#include <urlmon.h>
/*
* #pragma comment(lib,"urlmon.lib") 作用:
* 连接静态库 urlmon.lib到项目中:效果等同于:
* 项目属性--连接器--输入--附加依赖项加入这个lib;
*
* //!不需要将urlmon.lib 文件或 urlmon.dll 文件添加到项目文件中
*/
#pragma comment(lib,"urlmon.lib")
#define URL "http://vfx.mtime.cn/Video/2019/02/04/mp4/190204084208765161.mp4"
#define SAVEPATH "C:\\Users\\ZhaoCheng\\Desktop\\驯龙.mp4"
using namespace std;
int main()
{
//_T(x)==>__T(x)==> L ## x //!将L与x连接在一起
HRESULT hr = URLDownloadToFile(NULL,_T(URL), _T(SAVEPATH), 0, NULL);
if (hr == S_OK)
{
cout << "download finished!" << std::endl;
}
else
{
cout << "download failed!" << std::endl;
}
return 0;
}
06-22
320