| 232 | |
| 233 | #ifndef __ANDROID__ |
| 234 | uint64_t GetLastModified(std::string_view path) |
| 235 | { |
| 236 | uint64_t lastModified = 0; |
| 237 | struct stat statInfo{}; |
| 238 | if (stat(std::string(path).c_str(), &statInfo) == 0) |
| 239 | { |
| 240 | lastModified = statInfo.st_mtime; |
| 241 | } |
| 242 | return lastModified; |
| 243 | } |
| 244 | |
| 245 | uint64_t GetFileSize(std::string_view path) |
| 246 | { |