First operational implementation of video recorder.

This commit is contained in:
brunoherbelin
2020-07-26 23:54:29 +02:00
parent ab7ce4aa40
commit 60880a1a8b
10 changed files with 226 additions and 68 deletions

View File

@@ -42,6 +42,9 @@ namespace SystemToolkit
// extract the extension of a filename
std::string extension_filename(const std::string& filename);
// tests if dir is a directory and return its path, empty string otherwise
std::string path_directory(const std::string& path);
// list all files of a directory mathing the given filter extension (if any)
std::list<std::string> list_directory(const std::string& path, const std::string& filter = "");