C/C++輕鬆實作檔下載

黄舟
發布: 2017-01-22 14:30:10
原創
2872 人瀏覽過

首先,讓我們先來了解幾個API

_getcwd

Gets the current working directory.

char *_getcwd(   
   char *buffer,  
   int maxlen   
);
登入後複製

buffer

Storage location for the path.mcharhol

wd and wchar_t for _wgetcwd.

易知:buffer是路徑

maxlen:是長度

功能是得到目前程式的路徑

下一個API

UR loadToFilesFile function toalloads func.

char *_getcwd(   
   char *buffer,  
   int maxlen   
);  
wchar_t *_wgetcwd(   
   wchar_t *buffer,  
   int maxlen   
);
登入後複製

C/C++輕鬆實作檔下載下面是程式碼:

#include <Windows.h>  
#include <stdio.h>  
#include  <direct.h>    
#pragma comment(lib,"URlmon")  
  
int main()  
{  
    char buffer[MAX_PATH];  
    _getcwd(buffer, MAX_PATH);  
    strcat_s(buffer, "//1.jpg");  
    HRESULT Result = URLDownloadToFileA(NULL, "http://112.22.245.11:443/down/de0243d60205717a2a74aea53c0c500c-46353/1.jpg?cts=yd-f-U13274580&
    ctp=111A23A228A125&ctt=1484747960&limit=1&spd=1300000&ctk=4ab73a4a76e47ad0b181d0f9fc47b6a1&chk=de0243d60205717a2a74aea53c0c500c-46353", buffer, 0, NULL);  
    switch (Result)  
    {  
    case S_OK:printf("The download started successfully.\n");break;  
    case E_OUTOFMEMORY: printf("The buffer length is invalid, or there is insufficient memory to complete the operation.\n"); break;  
    }  
    return 0;  
}
登入後複製

C/C++輕鬆實作檔下載

程式運作截圖:

就是追蹤.php.cn)!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板