我想將文件下載到當前目錄而不是「c://」。這將如何完成?下載到當前目錄
我的代碼:
using namespace std;
#pragma comment(lib, "urlmon.lib")
int main()
{
cout << "downloading update";
HRESULT hr = URLDownloadToFile(NULL, _T("http://download.piriform.com/ccsetup233.exe"), _T("c://ccsetup233.exe"), 0, NULL);
FreeConsole();
}
我相信你只需要將「c://ccsetup233.exe」更改爲「ccsetup233.exe」,不需要路徑名稱 – Amadeus
只指定文件名,不包含路徑。 '_T(「ccsetup233.exe」)' –
工作。謝謝。 –