Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

boost::filesystem recursively getting size of each file

Why does this code throw an error when the argument is a directory?

Using boost::recursive_directory_iterator and using std::cout statements, I can see that it never prints a directory; only files. But, when I try to call boost::filesystem::file_size(), an error is thrown basically saying I'm trying to get the file size of a directory.

Error (argument was "/home"):

terminate called after throwing an instance of 'boost::filesystem::filesystem_error'
  what():  boost::filesystem::file_size: Operation not permitted: "/home/lost+found"
Aborted
#include <iostream>
#include <boost/filesystem.hpp>

namespace fs = boost::filesystem;

int main(int argc, char* argv[])
{
    if (argc != 2) return -1;

    const fs::path file{argv[1]};

    if (!fs::exists(file)) return -1;

    if (fs::is_regular_file(file))
        std::cout << file << "   [ " << fs::file_size(file) << " ]\n";

    else if (fs::is_directory(file))
        for (const fs::directory_entry& f : fs::recursive_directory_iterator{file})
            std::cout << f.path().filename() << "   [ " << fs::file_size(f.path()) << " ]\n";
}

Compiled with: g++ -Wall -Wextra -pedantic-errors -std=c++14 -lboost_system -lboost_filesystem -O2 -Os -s test3.cpp -o test3

like image 947
cppxor2arr Avatar asked Jul 18 '17 14:07

cppxor2arr


2 Answers

The error you get:

terminate called after throwing an instance of 'boost::filesystem::filesystem_error' what(): boost::filesystem::file_size: Operation not permitted: "/home/lost+found" Aborted

It means that it can't get the size of /home/lost+found. Normally, lost+found is a folder and file_size only get the size of regular files.

I understand that the loop does not show the name of this folder. It may be because the compiler is evaluating fs::file_size(f.path()) and throwing the exception before calling operator<< for the file name so it does not get printed.

I think the loop should be modified to check for a regular file before asking for the size:

for (const fs::directory_entry& f : fs::recursive_directory_iterator(folder)) {
  if (fs::is_regular_file(f.path())) {
    std::cout << f.path().filename() << "   [ " << fs::file_size(f.path()) << " ]\n";
  }
}
like image 110
J. Calleja Avatar answered Oct 16 '22 16:10

J. Calleja


Try to actually recursively get the size:

size_t du(fs::path p) {
    return fs::is_regular_file(p)
       ? file_size(p)
       : boost::accumulate(fs::directory_iterator{p}, 0ull, [](auto a, auto p){return a+du(p);});
}

This will work for directories by summing (accumulate) the files in all underlying directories.

Live On Coliru

#include <iostream>
#include <boost/filesystem.hpp>
#include <boost/range/numeric.hpp>

namespace fs = boost::filesystem;
size_t du(fs::path p) {
    std::cout << __FUNCTION__ << "(" << p << ")\n";
    return fs::is_regular_file(p)
       ? file_size(p)
       : boost::accumulate(fs::directory_iterator{p}, 0ull, [](auto a, auto p){return a+du(p);});
}

int main(int argc, char* argv[])
{
    if (argc != 2) return -1;

    std::cout << "Size is " << du(argv[1]) << "\n";
}

With the debug std::cout enabled:

Size is du(".")
du("./main.cpp")
du("./a.out")
22435
like image 1
sehe Avatar answered Oct 16 '22 18:10

sehe