| 51 | } |
| 52 | |
| 53 | int64_t NativeFilesystem::GetFilesize(std::string_view path) const { |
| 54 | return Platform::File(ToString(path)).GetSize(); |
| 55 | } |
| 56 | |
| 57 | std::streambuf* NativeFilesystem::CreateInputStreambuffer(std::string_view path, std::ios_base::openmode mode) const { |
| 58 | #ifdef USE_CUSTOM_FILEBUF |