stat,lstat,fstat1 函數都是獲取文件(普通文件,目錄,管道,socket,字符,塊()的屬性。函數原型#include <sys/stat.h>node
int stat(const char *restrict pathname, struct stat *restrict buf);提供文件名字,獲取文件對應屬性。socket
int fstat(int filedes, struct stat *buf);經過文件描述符獲取文件對應的屬性。函數
int lstat(const char *restrict pathname, struct stat *restrict buf);鏈接文件描述命,獲取文件屬性。2 文件對應的屬性post
struct stat {學習
mode_t st_mode; //文件對應的模式,文件,目錄等ui
ino_t st_ino; //inode節點號rest
dev_t st_dev; //設備號碼blog
dev_t st_rdev; //特殊設備號碼get
nlink_t st_nlink; //文件的鏈接數原型
uid_t st_uid; //文件全部者
gid_t st_gid; //文件全部者對應的組
off_t st_size; //普通文件,對應的文件字節數
time_t st_atime; //文件最後被訪問的時間
time_t st_mtime; //文件內容最後被修改的時間
time_t st_ctime; //文件狀態改變時間
blksize_t st_blksize; //文件內容對應的塊大小
blkcnt_t st_blocks; //偉建內容對應的塊數量
};
----------------------------------------------------------------------------------------
#include <unsitd.h>
#inlcude <sys/stat.h>
#include <sys/types.h>
int fstat(int filedes,struct stat *buf);
int stat(const char *path,struct stat *buf);
int lstat(const char *path,struct stat *buf);
這三個系統調用均可以返回指定文件的狀態信息,這些信息被寫到結構struct stat的緩衝區中。經過分析這個結構能夠得到指定文件的信息。
void report(struct stat *ptr)
{
printf("The major device no is:%d\n",major(ptr->st_dev));//主設備號
printf("The minor device no is:%d\n",minor(ptr->st_dev));//從設備號
printf("The file's node number is:%d\n",ptr->st_ino);//文件節點號
printf("The file's access mode is:%d\n",ptr->st_mode);//文件的訪問模式
printf("The file's hard link number is:%d\n",ptr->st_nlink);//文件的硬連接數目
printf("The file's user id is:%d\n",ptr->uid);//文件擁有者的ID
printf("The file's group id is:%d\n",ptr->gid);//文件的組ID
printf("The file's size is:%d\n",ptr->st_size);//文件的大小
printf("The block size is:%d\n",ptr->blksize);//文件佔用的塊數量
printf("The number of allocated blocks is:%d\n",ptr->st_blocks);//文件分配塊數量
struct tm*accesstime,*lmodifytime,*lchangetime;//訪問時間,修改時間,最後一個改變時間(屬性)
accesstime=localtime(&(ptr->st_atime));
accesstime=localtime(&(ptr->st_mtime));
accesstime=localtime(&(ptr->st_ctime));
printf("The last access time is: %d::%d::%d\n",accesstime->hour,accesstime->min,accesstime->sec);
printf("The last modify time is:%d::%d::%d\n",lmodifytime->hour,lmodifytime->min,lmodifytime->sec);
printf("The last change time is:%d::%d::%d\n",lchangetime->hour,lchangetime->min,lchangetime->sec);
}
結構time_t可用用localtime轉換成tm結構,得到本地時間。