
linux文件IO
文章平均质量分 77
xtx1990
新一代年轻人
展开
-
用文件IO操作实现ls命令
#include #include #include #include #include #include #include #include #include #define N 256 void DisplayFile(struct stat buf, char fname[]){ int n; struct tm *tp; switch (buf.st_mode & S_IFMT)原创 2012-11-12 13:35:09 · 665 阅读 · 0 评论 -
getopt函数的使用
#include #include int main(int argc, char *argv[]){ int ch, aflag = 0, lflag = 0, i; while ((ch = getopt(argc, argv, "al")) != -1) { switch ( ch ) { case 'a': printf("set option -a\n"); afl原创 2012-11-12 13:35:07 · 299 阅读 · 0 评论 -
Linux inotify功能及实现原理
1. inotify主要功能 它是一个内核用于通知用户空间程序文件系统变化的机制。 众所周知,Linux 桌面系统与 MAC 或 Windows 相比有许多不如人意的地方,为了改善这种状况,开源社区提出用户态需要内核提供一些机制,以便用户态能够及时地得知内核或底层硬件设备发生了什么,从而能够更好地管理设备,给用户提供更好的服务,如 hotplug、udev 和 inotify 就是转载 2013-06-03 16:42:11 · 661 阅读 · 0 评论 -
inotify用法简介及以之结合rsync实现主机间的文件实时同步
一、inotify简介 大家可以去https://github.com/rvoicilas/inotify-tools/wiki/看一些相关介绍。 要使用此工具需要Linux Kernel的支持,在2.6.32内核,需要打开CONFIG_INOTIFY与CONFIG_INOTIFY_USER。 inotify是Linux内核2.6.13 (June 18, 2005)版本新增的转载 2013-06-03 16:43:36 · 797 阅读 · 0 评论