| 1234567891011121314151617181920212223242526 |
- /**
- * \brerf
- * \author pengcheng(pengcheng@adcsoft.cn)
- * \date 2019.11.22
- * \attention
- *
- */
- #ifndef ADCSOFT_LOOK_ROUND_H__
- #define ADCSOFT_LOOK_ROUND_H__
- #include <cstdlib>
- #include <errno.h>
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <string>
- namespace adcsoft
- {
- bool IsAbsolutePath(const std::string& path);
- bool CreateSubdirectory(const std::string& rel_path);
- }
- #endif // !ADCSOFT_LOOK_ROUND_H__
|