- 论坛徽章:
- 0
|
- #include <fcntl.h>
- #include <unistd.h>
- #include <sys/stat.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #define SIZE 4096
- #define dbg(...) fprintf(stderr,__VA_ARGS__)
- typedef struct{
- unsigned long offset;
- unsigned long size;
- } PART;
- char filein[24];
- char fileout1[24];
- char fileout2[24];
- char fileout3[24];
- int main(int argc, char *argv[]){
- char data[SIZE];
- struct stat f_stat;
- int fin, fout1, fout2, fout3, sz, i=0;
- PART part1, part2, part3;
- if(argc != 5){
- puts("Not enough arguments.");
- puts("a.out in o1 o2 o3");
- return -1;
- }
- strcpy(filein, argv[1]);
- strcpy(fileout1, argv[2]);
- strcpy(fileout2, argv[3]);
- strcpy(fileout3, argv[4]);
- stat(filein, &f_stat); // getting the info of file
- printf("Size of file is %lu \n", f_stat.st_size);
- // breaking the size of file in 3 parts
- part1.offset = 0;
- part1.size = f_stat.st_size / 3;
- part2.offset = part1.size;
- part2.size = part1.size;
- part3.offset = part2.offset + part2.size;
- part3.size = f_stat.st_size - part3.offset;
- fin = open(filein, O_RDONLY);
- fout1 = open(fileout1, O_WRONLY|O_CREAT, 0666);
- fout2 = open(fileout2, O_WRONLY|O_CREAT, 0666);
- fout3 = open(fileout3, O_WRONLY|O_CREAT, 0666);
- lseek(fin,part1.offset, SEEK_SET);
- while(i < part1.size){
- sz = read(fin, data, SIZE);
- if(write(fout1, data, sz) <0)
- exit(1);
- i += sz;
- }
- close(fout1);
- printf("f1 \n");
- i=0;
- lseek(fin,part2.offset, SEEK_SET);
- while(i < part2.size){
- sz = read(fin, data, SIZE);
- if(write(fout2, data, sz)<0)
- exit(2);
- i += sz;
- }
- close(fout2);
- printf("f2 \n");
- i=0;
- lseek(fin,part3.offset, SEEK_SET);
- while(i < part3.size){
- sz = read(fin, data, SIZE);
- if(write(fout3, data, sz) <0)
- exit(3);
- i += sz;
- }
- printf("f3 \n");
- close(fout3);
- close(fin);
- printf("file breaking done\n");
- fflush(stdout);
- return 0;
- }
复制代码 我用 seq 10000000 > test.dat ( 在 Linux ) 作为 input 文件.
打入 $> a.out test.dat f1 f2 f3
$> wc -l f1 f2 f3
3425928 f1
3287040 f2
3287038 f3
10000006 total
$> wc -l test.dat
10000000 test.dat
为何分割后三个文件总行数大于单个文件总行数 ? 我错在哪里 ? 多谢 !!!
|
|