summaryrefslogtreecommitdiff
path: root/include/util/FileUtils.hpp
blob: a9526ece85ec26e55dcd08de1989db3f2d811d8c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __UTIL_FILE_UTILS_H
#define __UTIL_FILE_UTILS_H

#include <string>
#include <vector>

#include "util/UtilExportable.hpp"

UTIL_DLL_VISIBLE std::vector<std::string> directory_entries( const std::string &dir, bool absolute = false, bool recursive = false );

#endif