每个人都要有一个骨灰级的爱好,不为金钱,而纯粹是为了在这个领域享受追寻真理的快乐。
发布时间:2013-02-09 11:28:30
原文: http://blog.csdn.net/simmerlee/article/details/8281399在Linux中,可以利用stat()函数来获取一个文件的状态[cpp] view plaincopy#include <sys/stat.h> #include <unistd.h> &n.........【阅读全文】
发布时间:2013-02-08 01:23:30
利用fread/fwrite函数分批读取文本内容,对目标文件大小适应性好.#include <stdio.h>#include <getopt.h>#include <stdlib.h>#include <errno.h>#include <string.h>#define BUFSIZE 8192#define SWPFILE "./.swp"static struct option opts[] = { {.name = "number", .has_arg = 1, .val = 'n'}, {.n.........【阅读全文】