Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Variables

Variables

Const F_OK

F_OK: number = 0

Flag indicating that the file is visible to the calling process. This is useful for determining if a file exists, but says nothing about rwx permissions. Default if no mode is specified.

Const R_OK

R_OK: number = 4

Flag indicating that the file can be read by the calling process.

Const W_OK

W_OK: number = 2

Flag indicating that the file can be written by the calling process.

Const X_OK

X_OK: number = 1

Flag indicating that the file can be executed by the calling process. This has no effect on Windows (will behave like FileAccess.F_OK).