lengthSync method
Synchronously gets the length of the file.
Throws a FileSystemException if the operation fails.
Implementation
@override
int lengthSync() {
_assertIsOpen();
return _file.bytes.length;
}
Synchronously gets the length of the file.
Throws a FileSystemException if the operation fails.
@override
int lengthSync() {
_assertIsOpen();
return _file.bytes.length;
}