create | shared Boolean? createSet whether the file should be created if it does not already exist.
|
createNew | shared Boolean? createNewSet whether the file should be created and fail if it does exist already.
|
deleteOnClose | shared Boolean? deleteOnCloseSet whether the file should be deleted when it's closed, or the JVM is shutdown.
|
dsync | shared Boolean? dsyncSet whether every write to the file's content ill be written synchronously to the underlying hardware.
|
perms | shared String? permsSet the permissions string
|
read | shared Boolean? readSet whether the file is to be opened for reading
|
sparse | shared Boolean? sparseSet whether a hint should be provided that the file to created is sparse
|
sync | shared Boolean? syncSet whether every write to the file's content and meta-data will be written synchronously to the underlying hardware.
|
truncateExisting | shared Boolean? truncateExistingSet whether the file should be truncated to zero length on opening if it exists and is opened for write
|
write | shared Boolean? writeSet whether the file is to be opened for writing
|