摘要: zlib和minizip实现解压zip 原文连接: https://www.cnblogs.com/mtcnn/p/9410039.html #include <stdio.h> #include <string.h> #include "unzip.h" #define dir_delimter 阅读全文
posted @ 2020-09-30 14:18 撑起一片阳光 阅读(886) 评论(0) 推荐(0) 编辑
摘要: 递归删除文件夹下文件: #include <string.h> // for strcpy(), strcat() #include <io.h> #include<stdio.h> #define Max 100000//文件数量 int FileSearch(const char *dir); 阅读全文
posted @ 2020-09-30 14:12 撑起一片阳光 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 递归遍历文件夹下文件: #include <string.h> // for strcpy(), strcat() #include <io.h> #include<stdio.h> #define Max 100000//文件数量 int FileSearch(const char *dir); 阅读全文
posted @ 2020-09-30 14:07 撑起一片阳光 阅读(1587) 评论(0) 推荐(0) 编辑