0

boost::filesystem 中是否有一种方法可以提供路径的文件系统类型,如提供的那样;

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

我不一定想要一个字符串。枚举值就可以了。

4

1 回答 1

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];
       };
于 2012-02-22T07:24:19.747 回答