28 inline std::string PathJoin(
const std::vector<std::string>& paths,
29 const std::string& sep = PATH_SEP) {
30 if (paths.size() == 1) {
33 std::string filepath =
"";
34 for (
const auto& path : paths) {
39 if (path[0] == sep[0] || filepath.back() == sep[0]) {
42 filepath += sep + path;
48 inline std::string PathJoin(
const std::string& folder,
49 const std::string& filename,
50 const std::string& sep = PATH_SEP) {
51 return PathJoin(std::vector<std::string>{folder, filename}, sep);
54 inline std::string GetDirFromPath(
const std::string& path) {
55 auto pos = path.find_last_of(PATH_SEP);
56 if (pos == std::string::npos) {
63 return path.substr(0, pos);
66 inline bool CheckFileExists(
const std::string& path) {
67 std::fstream fin(path, std::ios::in);
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16