positionSync method
Synchronously gets the current byte position in the file.
Throws a FileSystemException if the operation fails.
Implementation
@override
int positionSync() {
_assertIsOpen();
return _position;
}
Synchronously gets the current byte position in the file.
Throws a FileSystemException if the operation fails.
@override
int positionSync() {
_assertIsOpen();
return _position;
}