使用 boost filesystem 获取文件系统类型
boost::filesystem 中是否有一种方法可以提供路径的文件系统类型,如:
$ stat -f -L -c %T .
ext2/ext3
我不一定想要一个字符串。一个枚举值就可以了。
Is there a method in boost::filesystem that gives the file system type for a path, as provided by;
$ stat -f -L -c %T .
ext2/ext3
I don't necessarily want a string. An enumerated value would do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 boost 没有提供任何查询文件系统类型的方法。但是,您可能希望使用 statfs 函数来实现此目的。从手册页 -
I don't think boost provides any way for querying file system type. However, you may want to use the statfs function for this purpose. From the man page -