Получение пути к рекурсивно повторяющимся каталогам относительно указанного пути входа
#c #std #std-filesystem #c #std #std-файловая система Вопрос: Рассмотрим пример в документации std::filesystem::recursive_directory_iterator : #include <fstream> #include <iostream> #include <filesystem> namespace fs = std::filesystem; int main() { fs::current_path(fs::temp_directory_path()); fs::create_directories("sandbox/a/b"); std::ofstream("sandbox/file1.txt");…