Commit 889be6e2 authored by Max Kellermann's avatar Max Kellermann

fs/io/FileReader: add methods GetSize(), GetPosition()

parent d15f64ae
......@@ -89,6 +89,32 @@ public:
gcc_pure
FileInfo GetFileInfo() const;
gcc_pure
uint64_t GetSize() const {
#ifdef WIN32
LARGE_INTEGER size;
return GetFileSizeEx(handle, &size)
? size.QuadPart
: 0;
#else
return fd.GetSize();
#endif
}
gcc_pure
uint64_t GetPosition() const {
#ifdef WIN32
LARGE_INTEGER zero;
zero.QuadPart = 0;
LARGE_INTEGER position;
return SetFilePointerEx(handle, zero, &position, FILE_CURRENT)
? position.QuadPart
: 0;
#else
return fd.Tell();
#endif
}
void Rewind() {
Seek(0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment