| 313 | } |
| 314 | |
| 315 | bool isFileExist(const string &nsFilePath) { |
| 316 | if (nsFilePath.empty()) { |
| 317 | return false; |
| 318 | } |
| 319 | |
| 320 | return access(nsFilePath.c_str(), F_OK) == 0; |
| 321 | } |
| 322 | |
| 323 | #ifndef MMKV_APPLE |
| 324 | extern bool mkPath(const MMKVPath_t &str) { |
no outgoing calls
no test coverage detected