Search

How to list files in a directory with C++

When we are developing our applications, we often need common tasks to achieve the final objective of our project.


How to list files in a directory with C++


When we are developing our applications, we often need common tasks to achieve the final objective of our project.

One of the most frequent things, among others, is to list files in a directory and we generally use the internet, however, it is very simple to understand the logic and establish this concept to reduce the waste of time carrying out research.

In this quick tip we will see how to do this in a modern way with C++.


Using filesystem

The filesystem library provides facilities for performing operations on file systems and their components, such as paths, regular files, and directories.

It was originally developed by Boost and in the C++ 17 version it was finally adopted by the committee to be part of the standard library (STL).

To use it we will include:

#include <filesystem>

Its namespace is very large, so it is always interesting to reduce the path by simplifying it to fs only, and this is best done right after including the header:

namespace fs = std::filesystem;

If you are using a linter, it may accuse warning: ■ Namespace alias decl 'fs' is unused (fix available), this is because we declared it, but we haven’t used it in our code yet, but we already will!

Now let’s create a string that will store the folder/directory we want to list the files in (e.g.: /path/to/directory), for these examples we will list the current directory:

std::string path = "./";

And to list the files we will use Range-based for loop which is also affectionately confused with for-each and we go through our folder using a native filesystem iterator which is directory_iterator() and within the loop we will print the element that is nothing more than the ) files in the directory, using the path() member function:

Remembering that if there is a subdirectory it will also list it.

for (const auto &entry : fs::directory_iterator(path)){
   std::cout << entry.path() << '\n';
}

After compiling normally and running, you will notice the files (and/or directories, if any) being listed.

If you want to make sure that the files are being listed one at a time, you can pause the display with sleep:

std::this_thread::sleep_for(std::chrono::seconds(1));

In this case there will be a 1 second delay in the display.

The complete code is:

#include <iostream>
#include <filesystem>
//#include <chrono>
//#include <thread>

namespace fs = std::filesystem;

int main(){
   std::string path = "./";

   for (const auto &entry : fs::directory_iterator(path)){
     std::cout << entry.path() << '\n';
     //std::this_thread::sleep_for(std::chrono::seconds(1));
   }

   return 0;
}

The pause is commented!


Displaying in order

Suppose you have several files like this: file1.jpg, file2.jpg,...file.10.jpg, ... file31.jpg, when you list them they will not appear in alphabetical order.

To resolve this, in addition to respecting the order of tens, add the headers:

#include <vector>
#include <algorithm>
#include <cctype> // isdigit
#include <sstream> // std::stringstream

Create a function with an inner lambda:

bool num_str_cmp(const fs::path& x, const fs::path& y) {
   auto get_number = [](const fs::path& path) {
     auto str_num = path.stem().string();

     std::string num_part {};
     for (char c : str_num) {
       if (std::isdigit(c)) {
         num_part += c;
       }
     }

     return !num_part.empty() ? std::stoi(num_part) : 0;
   };

   return get_number(x) < get_number(y);
}

And now sort the vector with sort:

std::vector<fs::path> files_in_dir;
std::copy(fs::directory_iterator(path), fs::directory_iterator(), std::back_inserter(files_in_dir));

std::sort(files_in_dir.begin(), files_in_dir.end(), num_str_cmp);

for (const auto &entry : files_in_dir){
   std::cout << entry << '\n';
}

This way we will solve both problems: alphabetical order and respect for tens!

Full code:

#include <iostream>
#include <filesystem>
#include <vector>
#include <algorithm>
#include <cctype> // isdigit
#include <sstream> // std::stringstream

namespace fs = std::filesystem;

bool num_str_cmp(const fs::path& x, const fs::path& y) {
   auto get_number = [](const fs::path& path) {
     auto str_num = path.stem().string();

     std::string num_part {};
     for (char c : str_num) {
       if (std::isdigit(c)) {
         num_part += c;
       }
     }

     return !num_part.empty() ? std::stoi(num_part) : 0;
   };

   return get_number(x) < get_number(y);
}

int main(){
   std::string path = "./imgs";

   std::vector<fs::path> files_in_dir;
   std::copy(fs::directory_iterator(path), fs::directory_iterator(), std::back_inserter(files_in_dir));

   std::sort(files_in_dir.begin(), files_in_dir.end(), num_str_cmp);

   for (const auto &entry : files_in_dir){
     std::cout << entry << '\n';
   }

   return 0;
}

For more information visit: https://en.cppreference.com/w/cpp/filesystem.


cpp


Share



Comments