Posted on 2008-08-25 13:55
Prayer 閱讀(12641)
評論(1) 編輯 收藏 引用 所屬分類:
LINUX/UNIX/AIX
1 函數(shù)都是獲取文件(普通文件,目錄,管道,socket,字符,塊()的屬性。
函數(shù)原型
#include <sys/stat.h>
int stat(const char *restrict pathname, struct stat *restrict buf);
提供文件名字,獲取文件對應(yīng)屬性。
int fstat(int filedes, struct stat *buf);
通過文件描述符獲取文件對應(yīng)的屬性。
int lstat(const char *restrict pathname, struct stat *restrict buf);
連接文件描述命,獲取文件屬性。
2 文件對應(yīng)的屬性
struct stat {
mode_t st_mode; //文件對應(yīng)的模式,文件,目錄等
ino_t st_ino; //inode節(jié)點(diǎn)號
dev_t st_dev; //設(shè)備號碼
dev_t st_rdev; //特殊設(shè)備號碼
nlink_t st_nlink; //文件的連接數(shù)
uid_t st_uid; //文件所有者
gid_t st_gid; //文件所有者對應(yīng)的組
off_t st_size; //普通文件,對應(yīng)的文件字節(jié)數(shù)
time_t st_atime; //文件最后被訪問的時(shí)間
time_t st_mtime; //文件內(nèi)容最后被修改的時(shí)間
time_t st_ctime; //文件狀態(tài)改變時(shí)間
blksize_t st_blksize; //文件內(nèi)容對應(yīng)的塊大小
blkcnt_t st_blocks; //偉建內(nèi)容對應(yīng)的塊數(shù)量
};
可以通過上面提供的函數(shù),返回一個(gè)結(jié)構(gòu)體,保存著文件的信息。
2008-07-26 20:25
/* 最近要做簡單的linux文件管理的功能,用到函數(shù)相繼貼出來.很亂,待總結(jié)!*/
/*reference :http://www.lslnet.com/linux/dosc1/10/linux-154990.htm*/ /* dir.c */
#include <sys/types.h>
#include <dirent.h>
#include <sys/stat.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
extern int errno;
/*
DIR *opendir(const char *name);
struct dirent *readdir(DIR *dir);
int closedir(DIR *dir);
*/
int main(int argc,char *argv[])
{
DIR *dir;
struct dirent *pdir;
struct stat st;
char buf[1024];
char c_type[6][9]={"普通文件","目錄","連接","\0","其他格式","\0"};
int type;
int n;
if(argc>2)
{
printf("Usage: dir /path\n");
return 0;
}
if(argc==2)
strncpy(buf,argv[1],99);
else
strcpy(buf,".");
printf("%s\n\n",buf);
dir=opendir(buf);
if(dir==NULL)
{
printf("Can not open %s\n",buf);
return 0;
}
n = strlen(buf);
if (buf[n-1] != '/') {
strcat(buf, "/");
n++;
}
while((pdir=readdir(dir))!=NULL)
{
strcat(buf, pdir->d_name);
if(stat(buf,&st)==0)
{
if(st.st_mode&S_IFREG)
type=0;
else if(st.st_mode&S_IFDIR)
type=1;
else if(st.st_mode&S_IFLNK)
type=2;
else type=4;
printf("%-10s%-20s%7d\n",c_type[type],pdir->d_name,(int)st.st_size);
}
else
printf("%-20s%-10d%-10d\n",pdir->d_name,st.st_mode,errno);
bzero(&st,sizeof(struct stat));
buf[n]='\0';
}
closedir(dir);
return 0;
|