| 696 | } |
| 697 | |
| 698 | SC::Result SC::FileSystem::setLastModifiedTime(StringSpan file, TimeMs time) |
| 699 | { |
| 700 | StringSpan encodedPath; |
| 701 | SC_TRY(convert(file, fileFormatBuffer1, fileTransportBuffer1, &encodedPath)); |
| 702 | return FileSystem::Operations::setLastModifiedTime(encodedPath, time); |
| 703 | } |
| 704 | |
| 705 | #undef SC_TRY_FORMAT_ERRNO |
| 706 | #ifdef _WIN32 |