cgv
Loading...
Searching...
No Matches
dir.h
1
#pragma once
2
3
#include <string>
4
5
#include "lib_begin.h"
6
#include <vector>
7
#include <string>
8
9
namespace
cgv
{
10
namespace
utils {
11
namespace
dir {
13
CGV_API
bool
exists(
const
std::string& dir_name);
15
CGV_API
bool
chdir(
const
std::string& dir_name);
17
CGV_API
bool
mkdir(
const
std::string& dir_name);
19
CGV_API
bool
rmdir(
const
std::string& dir_name);
21
CGV_API std::string current();
23
CGV_API
bool
glob(
const
std::string& dir_name, std::vector<std::string>& file_names,
const
std::string& filter =
"*.*"
,
bool
recursive =
false
,
bool
short_file_names =
false
, std::vector<std::string>* subdir_names = 0);
24
}
25
}
26
}
27
28
#include <cgv/config/lib_end.h>
29
cgv
the cgv namespace
Definition
print.h:11
cgv
utils
dir.h
Generated by
1.9.8