Flag

fs2.io.file.Flag
See theFlag companion class
object Flag

Attributes

Companion
class
Source
Flag.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Flag.type

Members list

Value members

Concrete fields

val Append: Flag

When combined with Write, writes are done at the end of the file.

When combined with Write, writes are done at the end of the file.

Attributes

Source
Flag.scala
val Create: Flag

Creates the file if it does not exist.

Creates the file if it does not exist.

Attributes

Source
Flag.scala

Creates the file if it does not exist and fails if it already exists.

Creates the file if it does not exist and fails if it already exists.

Attributes

Source
Flag.scala
val Dsync: Flag

Requires all updates to the file content be written synchronously to underlying storage.

Requires all updates to the file content be written synchronously to underlying storage.

Attributes

Source
Flag.scala
val Read: Flag

Open file for read access.

Open file for read access.

Attributes

Source
Flag.scala
val Sync: Flag

Requires all updates to the file content and metadata be written synchronously to underlying storage.

Requires all updates to the file content and metadata be written synchronously to underlying storage.

Attributes

Source
Flag.scala
val Truncate: Flag

When combined with Write, truncates the file to 0 bytes when opening.

When combined with Write, truncates the file to 0 bytes when opening.

Attributes

Source
Flag.scala
val Write: Flag

Open file for write access.

Open file for write access.

Attributes

Source
Flag.scala