Add Folder check and Folder creation

This commit is contained in:
2023-03-16 13:41:53 +01:00
parent 5f3d3d78b7
commit c26e48e43c
13 changed files with 376 additions and 61 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef UTIL_UTIL_H
#define UTIL_UTIL_H
#include <string>
namespace CameraRecorder {
namespace Util {
std::string GetDateTimeString(bool omitSeparator = false);
bool FolderExists(const std::string& path);
void CreateFolder(const std::string& path);
} // namespace Util
} // namespace CameraRecorder
#endif // UTIL_UTIL_H