-1

如何在 C 中检索文件/文件夹的属性,尤其是在 Linux 中?

我需要有关创建日期、上次修改日期、isDirectory 或 isFile、权限、所有权和大小的信息。

谢谢。

4

3 回答 3

4

您很可能需要该stat()功能。

例子:

struct stat attr;
stat("/home/crazyfffan/foo.txt", &attr);

printf("Size: %u\n", (unsigned)attr.st_size);
printf("Permissions: %o\n", (int)attr.st_mode & 07777);
printf("Is directory? %d\n", attr.st_mode & ST_ISDIR);

等等

于 2012-08-01T18:57:31.333 回答
3

使用stat系统调用。man 2 stat.

您将获得一个包含您正在寻找的内容的结构。

从手册页:

struct stat {
           dev_t     st_dev;     /* ID of device containing file */
           ino_t     st_ino;     /* inode number */
           mode_t    st_mode;    /* protection */
           nlink_t   st_nlink;   /* number of hard links */
           uid_t     st_uid;     /* user ID of owner */
           gid_t     st_gid;     /* group ID of owner */
           dev_t     st_rdev;    /* device ID (if special file) */
           off_t     st_size;    /* total size, in bytes */
           blksize_t st_blksize; /* blocksize for file system I/O */
           blkcnt_t  st_blocks;  /* number of 512B blocks allocated */
           time_t    st_atime;   /* time of last access */
           time_t    st_mtime;   /* time of last modification */
           time_t    st_ctime;   /* time of last status change */
       };

查看手册页中的示例以获取有关使用该st_mode字段确定文件类型的详细信息;这是检查isDirectory/isFile使用 POSIX 宏的方法:

isDirectory = S_ISDIR(statBuf.st_mode);
isFile = S_ISREG(statBuf.st_mode);
于 2012-08-01T19:00:15.290 回答
1
struct stat file_stats;    

fd = open(filename, O_RDONLY);
if (fd == -1) {
    exit(-1);
}

if (fstat(fd, &file_stats) < 0) {
    exit(-1);
}
if (S_ISDIR(file_stats.st_mode)) {
      printf("It is dir\n");
} else {
    snprintf(msg, PATH_MAX, "%lld, %ld, %o, %d, %d, %d, %lld, %ld, %ld, %ld, %ld, %ld,
    %ld\n",
            file_stats.st_dev,
            file_stats.st_ino,
            file_stats.st_mode,
            file_stats.st_nlink,
            file_stats.st_uid,
            file_stats.st_gid,
            file_stats.st_rdev,
            file_stats.st_size,
            file_stats.st_blksize,
            file_stats.st_blocks,
            file_stats.st_atime,
            file_stats.st_mtime,
            file_stats.st_ctime);
}
于 2012-08-01T19:05:09.260 回答