aboutsummaryrefslogtreecommitdiff
path: root/clocl/file_manip.h
blob: 708423974738ab1bee4273a9dff3e09932698a15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _FILE_MANIP_H_
#define _FILE_MANIP_H_
#include <string>

bool        fs_exists           (std::string path);
std::string fs_filename         (std::string path);
std::string fs_stem             (std::string path);
std::string fs_ext              (std::string path);
std::string fs_path             (std::string path);
std::string fs_replace_extension(std::string path, std::string ext);

#endif // _FILE_MANIP_H_