chksum_cpp/fs_reader.h
AustrianToast 74425df83e
first progress
can't do much beside print out all files and folder
out to the console
2024-02-14 00:12:50 +01:00

6 lines
260 B
C++

#include <string>
#include <vector>
std::vector<std::string> find_all_files(std::string filesystem_path);
std::vector<std::string> find_all_folders(std::string filesystem_path);
std::vector<std::string> find_all_files_and_folders(std::string filesystem_path);