查看源代码 File.Stream (Elixir v1.16.2)

定义由 File.stream!/3 返回的 File.Stream 结构体。

以下字段为公开字段

  • path - 文件路径
  • modes - 文件模式
  • raw - 一个布尔值,表示是否应该使用 bin 函数
  • line_or_bytes - 表示读取时应读取行还是给定数量的字节
  • node - 文件所属的节点

概要

类型

@type t() :: %File.Stream{
  line_or_bytes: term(),
  modes: term(),
  node: term(),
  path: term(),
  raw: term()
}