파일 다운로드 하기

-인자로 전달받은 URL로부터 파일을 다운로드 받습니다. ex:)GetFile(“http://localhost/file.exe“,”c:\\file.exe“); //http://localhost/file.exe 에서 파일을 다운받아 c:\file.exe에 저장 #include #include BOOL GetFile(char* url,char* dstPath){         HRESULT hr;         hr=URLDownloadToFile(NULL,url,dstPath,0,NULL);         if(hr == S_OK){                 return TRUE;         }         return FALSE; }
바로가기