C/C++轻松实现文件下载
生活随笔
收集整理的這篇文章主要介紹了
C/C++轻松实现文件下载
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
首先,我們先來(lái)了解幾個(gè)API
_getcwd
Gets the current working directory.
buffer
Storage location for the path.
Maximum length of the path in characters:?char?for?_getcwd?and?wchar_t?for?_wgetcwd.
易知:buffer是路徑maxlen:是長(zhǎng)度
功能是得到當(dāng)前程序的路徑
下一個(gè)API
URLDownloadToFile function
Downloads bits from the Internet and saves them to a file.char *_getcwd( char *buffer,int maxlen ); wchar_t *_wgetcwd( wchar_t *buffer,int maxlen );
下面是代碼:
#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; }程序運(yùn)行截圖:
總結(jié)
以上是生活随笔為你收集整理的C/C++轻松实现文件下载的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Java高级语法笔记-字符集与中文编码
- 下一篇: Qt|C/C++植物大战僵尸修改器(用户