使用boost文件系统获取文件系统类型

时间:2012-02-16 21:36:01

标签: boost filesystems stat

boost :: filesystem中是否有一个方法为路径提供文件系统类型,由提供;

$ stat -f -L -c %T .
ext2/ext3

我不一定要字符串。枚举值可以。

1 个答案:

答案 0 :(得分:1)

我认为boost不提供任何查询文件系统类型的方法。但是,您可能希望使用statfs函数来实现此目的。从手册页 -

  

函数statfs()返回有关已安装文件系统的信息。 path是已装入文件系统中任何文件的路径名。 buf是指向大致如下定义的statfs结构的指针:

       struct statfs {
           __SWORD_TYPE f_type;    /* type of file system (see below) */
           __SWORD_TYPE f_bsize;   /* optimal transfer block size */
           fsblkcnt_t   f_blocks;  /* total data blocks in file system */
           fsblkcnt_t   f_bfree;   /* free blocks in fs */
           fsblkcnt_t   f_bavail;  /* free blocks available to
                                      unprivileged user */
           fsfilcnt_t   f_files;   /* total file nodes in file system */
           fsfilcnt_t   f_ffree;   /* free file nodes in fs */
           fsid_t       f_fsid;    /* file system id */
           __SWORD_TYPE f_namelen; /* maximum length of filenames */
           __SWORD_TYPE f_frsize;  /* fragment size (since Linux 2.6) */
           __SWORD_TYPE f_spare[5];
       };