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