[inline, private]
Definition at line 219 of file FileSystem.h.
Referenced by DoMkDirPathLocal().
00220 { 00221 #ifdef unix 00222 mode_t m = 0755; 00223 mkdir(dir.c_str(), m); 00224 #else 00225 mkdir(dir.c_str()); 00226 #endif 00227 }