| 410 | |
| 411 | #ifndef __ANDROID__ |
| 412 | time_t FileGetModifiedTime(u8string_view path) |
| 413 | { |
| 414 | struct stat buf; |
| 415 | if (stat(u8string(path).c_str(), &buf) == 0) |
| 416 | { |
| 417 | return buf.st_mtime; |
| 418 | } |
| 419 | return 100; |
| 420 | } |
| 421 | #endif |
| 422 | |
| 423 | datetime64 GetDatetimeNowUTC() |