writeAsBytesSync 抽象方法

void writeAsBytesSync(
  1. List<int> bytes,
  2. {FileMode mode = FileMode.write,
  3. bool flush = false}
)

同步将字节数组写入文件。

打开文件,将字节数组写入其中,然后关闭文件。

默认情况下,writeAsBytesSync 创建用于写入的文件,并在文件已存在时截断文件。要向现有文件追加字节,请将 FileMode.append 作为可选的模式参数传递。

bytes 的元素应该是范围为 0 到 255 的整数。任何不在这个范围内的整数都会在写入之前转换为字节。转换等同于执行 value.toUnsigned(8)

如果将 flush 参数设置为 true,则在返回之前将写入的数据刷新到文件系统。

如果操作失败,将抛出 FileSystemException

实现

void writeAsBytesSync(List<int> bytes,
    {FileMode mode = FileMode.write, bool flush = false});