Searched refs:directory_path (Results 1 – 2 of 2) sorted by relevance
85 Result<void> EnsureDirectoryExists(const std::string& directory_path) { in EnsureDirectoryExists() argument86 if (!DirectoryExists(directory_path)) { in EnsureDirectoryExists()87 LOG(DEBUG) << "Setting up " << directory_path; in EnsureDirectoryExists()88 if (mkdir(directory_path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) < in EnsureDirectoryExists()91 return CF_ERRNO("Failed to create dir: \"" << directory_path); in EnsureDirectoryExists()
31 Result<void> EnsureDirectoryExists(const std::string& directory_path);