资源简介
Windows平台下c++ 对ftp和sftp文件以及文件夹下载上传整体的工程源代码。
内涵文档,测试用例
经过单元测试,集成测试
可靠,本人也是经过半个月的开发和封装
代码片段和文件信息
/*
Copyright (c) 2009 Dave Gamble
Permission is hereby granted free of charge to any person obtaining a copy
of this software and associated documentation files (the “Software“) to deal
in the Software without restriction including without limitation the rights
to use copy modify merge publish distribute sublicense and/or sell
copies of the Software and to permit persons to whom the Software is
furnished to do so subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS“ WITHOUT WARRANTY OF ANY KIND EXPRESS OR
IMPLIED INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER
LIABILITY WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING FROM
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
/* cJSON */
/* JSON parser in C. */
#include
#include
#include
#include
#include
#include
#include
#include “cJSON.h“
static const char *ep;
const char *cJSON_GetErrorPtr(void) {return ep;}
static int cJSON_strcasecmp(const char *s1const char *s2)
{
if (!s1) return (s1==s2)?0:1;if (!s2) return 1;
for(; tolower(*s1) == tolower(*s2); ++s1 ++s2) if(*s1 == 0) return 0;
return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2);
}
static void *(*cJSON_malloc)(size_t sz) = malloc;
static void (*cJSON_free)(void *ptr) = free;
static char* cJSON_strdup(const char* str)
{
size_t len;
char* copy;
len = strlen(str) + 1;
if (!(copy = (char*)cJSON_malloc(len))) return 0;
memcpy(copystrlen);
return copy;
}
void cJSON_InitHooks(cJSON_Hooks* hooks)
{
if (!hooks) { /* Reset hooks */
cJSON_malloc = malloc;
cJSON_free = free;
return;
}
cJSON_malloc = (hooks->malloc_fn)?hooks->malloc_fn:malloc;
cJSON_free = (hooks->free_fn)?hooks->free_fn:free;
}
/* Internal constructor. */
static cJSON *cJSON_New_Item(void)
{
cJSON* node = (cJSON*)cJSON_malloc(sizeof(cJSON));
if (node) memset(node0sizeof(cJSON));
return node;
}
/* Delete a cJSON structure. */
void cJSON_Delete(cJSON *c)
{
cJSON *next;
while (c)
{
next=c->next;
if (!(c->type&cJSON_IsReference) && c->child) cJSON_Delete(c->child);
if (!(c->type&cJSON_IsReference) && c->valuestring) cJSON_free(c->valuestring);
if (!(c->type&cJSON_StringIsConst) && c->string) cJSON_free(c->string);
cJSON_free(c);
c=next;
}
}
/* Parse the input text to generate a number and populate the result into item. */
static const char *parse_number(cJSON *itemconst char *num)
{
double n=0sign=1scale=0;int subscale=0signsubscale=1;
if (*num==‘-‘) sign=-1num++; /* Ha
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 17 2018-05-02 14:17 ftp_sftp\.git\COMMIT_EDITMSG
文件 296 2018-04-25 17:46 ftp_sftp\.git\config
文件 73 2018-04-25 17:46 ftp_sftp\.git\desc
文件 23 2018-04-25 17:46 ftp_sftp\.git\HEAD
文件 478 2018-04-25 17:46 ftp_sftp\.git\hooks\applypatch-msg.sample
文件 896 2018-04-25 17:46 ftp_sftp\.git\hooks\commit-msg.sample
文件 189 2018-04-25 17:46 ftp_sftp\.git\hooks\post-update.sample
文件 424 2018-04-25 17:46 ftp_sftp\.git\hooks\pre-applypatch.sample
文件 1642 2018-04-25 17:46 ftp_sftp\.git\hooks\pre-commit.sample
文件 1348 2018-04-25 17:46 ftp_sftp\.git\hooks\pre-push.sample
文件 4951 2018-04-25 17:46 ftp_sftp\.git\hooks\pre-reba
文件 544 2018-04-25 17:46 ftp_sftp\.git\hooks\pre-receive.sample
文件 1239 2018-04-25 17:46 ftp_sftp\.git\hooks\prepare-commit-msg.sample
文件 3610 2018-04-25 17:46 ftp_sftp\.git\hooks\update.sample
文件 3539 2018-05-02 14:17 ftp_sftp\.git\index
文件 240 2018-04-25 17:46 ftp_sftp\.git\info\exclude
文件 695 2018-05-02 14:17 ftp_sftp\.git\logs\HEAD
文件 695 2018-05-02 14:17 ftp_sftp\.git\logs\refs\heads\master
文件 182 2018-04-25 17:46 ftp_sftp\.git\logs\refs\remotes\origin\HEAD
文件 453 2018-05-02 14:18 ftp_sftp\.git\logs\refs\remotes\origin\master
文件 112 2018-05-02 12:11 ftp_sftp\.git\ob
文件 179 2018-05-02 14:17 ftp_sftp\.git\ob
文件 2101020 2018-05-02 14:17 ftp_sftp\.git\ob
文件 53 2018-05-02 12:11 ftp_sftp\.git\ob
文件 5157 2018-04-25 17:50 ftp_sftp\.git\ob
文件 536 2018-05-02 14:17 ftp_sftp\.git\ob
文件 443 2018-04-25 17:50 ftp_sftp\.git\ob
文件 441 2018-04-25 17:50 ftp_sftp\.git\ob
文件 216 2018-05-02 12:11 ftp_sftp\.git\ob
文件 873 2018-04-25 17:50 ftp_sftp\.git\ob
............此处省略183个文件信息
相关资源
- 颜色识别形状识别STM103嵌入式代码
- c++ 邮件多附件群发
- c++ 透明代理(hookproxy)
- mfc 调用redis
- FTP客户端源码(c++)
- c++ 画图(14Qt-XPS)
- c++多边形交并差运算
- VC++基于OpenGL模拟的一个3维空间模型
- c++ 虚拟摄像头
- hook,捕获所有案件,查找所有窗口,
- C语言课设计算器
- c++ 简易贪吃蛇源码
- 高精度加法(c++代码)
- C++调用百度地图案例
- 北京化工大学计算方法(C/C++)讲义
- 基于VC++的SolidWorks二次开发SolidWorks
- c++ 模拟鼠标按键
- OFD编辑器
- Beginning C++17 From Novice to Professional
- C++ STL实现
- opencv手部轮廓识别以及轨迹识别
- 百度C++编码规范
- C++ sql2008 WebServer通讯.docx
- c++ 定时关机程序源码
- 基于VSCode和CMake实现C++开发
- c++语法查询工具
- c++ 账务系统源码
- GBT 28169-2011 嵌入式软件 C语言编码规范
- c++ 猜拳小游戏
- XUnZip Zip解压缩.rar
评论
共有 条评论