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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 –