The goog.fs.DirectoryEntry.Behavior Enum

goog.fs.DirectoryEntry.Behavior

Behaviors for getting files and directories.

@enum
{number}

.CREATE

Get the file if it exists, create it if it doesn't.

.CREATE_EXCLUSIVE

Error out if the file exists, create it if it doesn't.

.DEFAULT

Get the file if it exists, error out if it doesn't.