ifplusor commented on a change in pull request #185: replace boost log with 
spdlog, use this PR to replace 
https://github.com/apache/rocketmq-client-cpp/pull/163
URL: 
https://github.com/apache/rocketmq-client-cpp/pull/185#discussion_r326008265
 
 

 ##########
 File path: src/common/UtilAll.cpp
 ##########
 @@ -267,6 +267,50 @@ string UtilAll::getHomeDirectory() {
   return homeDir;
 }
 
+static bool createDirectoryInner(const char *dir)
+{
+    if (dir == nullptr)  {
+        return false;
+    }
+    if (access(dir, 0) == -1) {
+#ifdef _WIN32
+        int flag = mkdir(dir);
+#else
+        int flag = mkdir(dir, 0755);
+#endif
+        if (flag == 0) {
+            return true;
+        } else {
+            return false;
+        }
+    }
+       return true;
 
 Review comment:
   '\t' as indentation is bad. Use two whitespace please.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to