文件属性及目录基本操作_Tag标签_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
· linux-文件属性及目录基本操作发布时间:2010-09-19
#include<sys/types.h>#include<sys/stat.h>#include<stdio.h>#include<dirent.h>intmain(intargc,char*argv[]){inti;structstatbuf;char*ptr;if(argc<2){printf("filenameerror");exit(1);}if(lstat(argv[1],&buf)<0)... 查看全文