Oflags
WASI Preview1 type $oflags
Open flags used by path_open.
Representation: u16
Definition:
(typename $oflags
  (flags (@witx repr u16)
    ;;; Create file if it does not exist.
    $creat
    ;;; Fail if not a directory.
    $directory
    ;;; Fail if file already exists.
    $excl
    ;;; Truncate file to size 0.
    $trunc
  )
)Content copied to clipboard