代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
c++拆分文件
作者:
Dezai.CN
/ 发布于
2013/6/20
/
609
/* * 把一个大文件文件拆分成指定的大小的几个小文件 * Author: Daniel Chen * yihua.chen@hotmail.com */ #include <stdlib.h> #include <stdio.h> #define MAXFILECNT 8 static int filecount = 0; static char *Files[MAXFILECNT]; static char txtBuff[1024 * 520]; static char fname[256]; static int flength = 512; int getContent(FILE *file, char *buff, int offset, int length, int *flag) { char *tmp = &buff[offset]; int c = 0; int i = 0; *flag = 0; while ((c = fgetc(file)) > 0 && i < length) { tmp[i++] = (char)c; } while (c > 0 && c != '\n') { tmp[i++] = (char)c; c = fgetc(file); } if (c <= 0) { fclose(file); *flag = 1; } tmp[i] = '\0'; return (i + offset); } void divide(char **files, int filecnt, const char *filename, const char *type, int divLen) { int i = 0; int j = 0; int len = 0; int flag = 0; int offset = 0; FILE *sf, *tf; if (filecnt <= 0) return; sf = NULL; while (1) { if (sf == NULL) sf = fopen(files[i], "r"); if (sf == NULL) { printf("Error: Open file %s failed!\n", files[i]); exit(1); } len = getContent(sf, txtBuff, offset, divLen - offset, &flag); if (flag) { /* 当前文件已经读完 */ if (i >= filecnt - 1) { /* 没有新的文件可读取 */ sprintf(fname, "%s_%03d.%s", filename, j++, type); tf = fopen(fname, "w+"); if (tf == NULL) { printf("Create and open file %s failed!\n", fname); exit(1); } fputs(txtBuff, tf); fflush(tf); fclose(tf); return; /* 函数退出 */ } else { /* 还有新的文件可读取 */ if (len >= divLen) { /* 本次读取已经完成 */ sprintf(fname, "%s_%03d.%s", filename, j++, type); tf = fopen(fname, "w+"); if (tf == NULL) { printf("Create and open file %s failed!\n", fname); exit(1); } fputs(txtBuff, tf); fflush(tf); fclose(tf); i++; offset = 0; sf = NULL; continue; /* 继续读取下一个文件 */ } else { /* 本次读取尚未完成 */ i++; sf = NULL; /* 读取下一个文件 */ continue; } } } else { /* 当前文件还没有读取完成 */ if (len < divLen) { /* 如果读取的长度不够,则出错 */ printf("Error: Read file %s error!\n", files[i]); exit(1); } /* 将本次读取的内容写入新的文件 */ sprintf(fname, "%s_%03d.%s", filename, j++, type); tf = fopen(fname, "w+"); if (tf == NULL) { printf("Create and open file %s failed!\n", fname); exit(1); } fputs(txtBuff, tf); fflush(tf); fclose(tf); /* 继续读取下一部分内容 */ offset = 0; continue; } } return; } int main(int argc, char **argv) { int i; if (argc <= 4) { printf("Usage: %s target_file_name target_file_type divide_len file1 [file2 ...]\n", argv[0]); system("pause"); return EXIT_SUCCESS; } filecount = argc - 4; if (filecount > MAXFILECNT) { printf("Open too many files!\n"); return EXIT_FAILURE; } flength = atoi(argv[3]) * 1024; for (i = 0; i < filecount; i++) Files[i] = argv[4 + i]; divide(Files, filecount, argv[1], argv[2], flength); return EXIT_SUCCESS; }
试试其它关键字
拆分文件
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
Dezai.CN
贡献的其它代码
(
4037
)
.
多线程Socket服务器模块
.
生成随机密码
.
清除浮动样式
.
弹出窗口居中
.
抓取url的函数
.
使用base HTTP验证
.
div模拟iframe嵌入效果
.
通过header转向的方法
.
Session操作类
.
执行sqlite输入插入操作后获得自动编号的ID
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3