Lines Matching full:path
67 int32_t CreateFile(const std::string &path, mode_t mode = DEFAULT_FILE_MODE);
72 std::string IncludeTrailingPathDelimiter(const std::string& path);
73 std::string ExcludeTrailingPathDelimiter(const std::string& path);
74 void GetDirFiles(const std::string& path, std::vector<std::string>& files);
75 bool ForceCreateDirectory(const std::string& path);
76 bool ForceCreateDirectory(const std::string& path, mode_t mode);
77 void RemoveFolderBeginWith(const std::string &path, const std::string &folderName);
78 bool ForceRemoveDirectory(const std::string& path, bool isNeedDeleteGivenDirSelf = true);
80 uint64_t GetFolderSize(const std::string& path);
81 uint64_t GetFileSize(const std::string& path);
84 bool ChangeModeDirectory(const std::string& path, const mode_t& mode);
85 bool PathToRealPath(const std::string& path, std::string& realPath);
87 int Open(const std::string& path, const int flags, const mode_t mode);
88 void FormatPath2UnixStyle(std::string &path);
89 void CreateDirWithDefaultPerm(const std::string& path, uid_t aidRoot, uid_t aid_system);
91 bool IsDirectory(const std::string &path);
93 std::string GetParentDir(const std::string &path);
94 bool IsLegalPath(const std::string& path);