C/C++轻松实现文件下载

黄舟
发布: 2017-01-22 14:30:10
原创
3183人浏览过

首先,我们先来了解几个api

_getcwd

Gets the current working directory.

char *_getcwd(   
   char *buffer,  
   int maxlen   
);
登录后复制

buffer

Storage location for the path.

立即学习C++免费学习笔记(深入)”;

maxlen

Maximum length of the path in characters: char for _getcwd and wchar_t for _wgetcwd.

易知:buffer是路径

maxlen:是长度

功能是得到当前程序的路径

下一个API

小文AI论文
小文AI论文

轻松解决论文写作难题,AI论文助您一键完成,仅需一杯咖啡时间,即可轻松问鼎学术高峰!

小文AI论文69
查看详情 小文AI论文

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   
);
登录后复制

766.png

767.png

下面是代码:

#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;  
}
登录后复制

程序运行截图:

768.png

以上就是 C/C++轻松实现文件下载的内容,更多相关内容请关注PHP中文网(www.php.cn)!

c++速学教程(入门到精通)
c++速学教程(入门到精通)

c++怎么学习?c++怎么入门?c++在哪学?c++怎么学才快?不用担心,这里为大家提供了c++速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号