VisPro  1.0
Project of Visualisierung 2
FileHelpers.hpp
1 #ifndef FILEHELPERS
2 #define FILEHELPERS
3 
4 //#include "stdafx.h"
5 
6 #include <Windows.h>
7 #include <vector>
8 #include <string>
9 
10 namespace Helper
11 {
12  std::vector<std::string> get_all_files_names_within_folder(std::string folder);
13 
14  std::vector<std::string> getFilesPathWithinFolder(std::string folder, bool recursive = true, std::string extension = "");
15 
16 }
17 
18 #endif
Definition: FileHelpers.cpp:18