Creates directory and all non-existings parents @param[in] path Path to be created @param[in] mode Access permissions field; NOTE: ignored on win @returns true if target path created or exists (and directory)
| 74 | /// @param[in] mode Access permissions field; NOTE: ignored on win |
| 75 | /// @returns true if target path created or exists (and directory) |
| 76 | inline bool MakeDirectoryRecursive(const TString& path, EFilePermissions mode) { |
| 77 | return MakeDirectoryRecursive(path, mode, false); |
| 78 | } |
| 79 | |
| 80 | /// Creates directory and all non-existings parents |
| 81 | /// |
no outgoing calls