CCIMXDesktop
 
Loading...
Searching...
No Matches
FileIOUtils.h
1#ifndef FILEIOUTILS_H
2#define FILEIOUTILS_H
3#include "library/FileDefs.h"
4#include <string>
5
6namespace StdFileIOUtils {
16bool checkFileExsitence(
17 const std::string& path,
18 PermissionType type = PermissionType::Read);
19
30bool createDirectoryIfNotExsit(const std::string& path);
31
42bool createFileIfNotExists(const std::string& filePath);
43
44}
45
46#endif // FILEIOUTILS_H