2013年8月8日
摘要: 阅读全文
posted @ 2013-08-08 18:05 xieweiwei 阅读(133) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include int main(int argc,char *argv[]){ int i; struct stat buf; for(i = 1; i < argc; i++) { printf("%s:",argv[i]); if(stat(argv[i],&buf) < 0) { printf("stat error\n"); continue; } //st_dev为文件系统的设备号 st_rdev为实际设备的设备号(字符特殊文件和块特殊文件才有) //设备号分为主、次 阅读全文
posted @ 2013-08-08 17:52 xieweiwei 阅读(862) 评论(0) 推荐(0) 编辑
摘要: #include link("t.txt","/home/xww/桌面/t");为当前目录下的t.txt在桌面创建一个链接unlink("/home/xww/桌面/t")移除桌面的t链接 阅读全文
posted @ 2013-08-08 17:01 xieweiwei 阅读(229) 评论(0) 推荐(0) 编辑
摘要: #include #include #include int main(int argc,char *argv[]){ if(argc != 2) { printf("parameter error"); exit(1); } if(access(argv[1],R_OK) < 0) { printf("access error for %s\n",argv[1]); }else printf("access ok\n"); if(open(argv[1],O_RDONLY) < 0) { printf("ope 阅读全文
posted @ 2013-08-08 15:50 xieweiwei 阅读(225) 评论(0) 推荐(0) 编辑