Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Variables

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.

R_OK: number = 4

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

W_OK: number = 2

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

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).