openSync method

  1. @override
RandomAccessFile openSync({
  1. FileMode mode = FileMode.read,
})
override

Synchronously opens the file for random access operations.

The result is a RandomAccessFile on which random access operations can be performed. Opened RandomAccessFiles must be closed using the RandomAccessFile.close method.

See open for information on the mode argument.

Throws a FileSystemException if the operation fails.

Implementation

@override
RandomAccessFile openSync({FileMode mode = FileMode.read}) {
  assertIsFile(_fs, path, 'Cannot open file');
  return MemoryRandomAccessFile(_fs, path, mode: mode);
}