OpenOptions |
OpenOptions.setAppend(boolean append) |
Whether the file should be opened in append mode.
|
OpenOptions |
OpenOptions.setCreate(boolean create) |
Set whether the file should be created if it does not already exist.
|
OpenOptions |
OpenOptions.setCreateNew(boolean createNew) |
Set whether the file should be created and fail if it does exist already.
|
OpenOptions |
OpenOptions.setDeleteOnClose(boolean deleteOnClose) |
Set whether the file should be deleted when it's closed, or the JVM is shutdown.
|
OpenOptions |
OpenOptions.setDsync(boolean dsync) |
Set whether every write to the file's content will be written synchronously to the underlying hardware.
|
OpenOptions |
OpenOptions.setPerms(String perms) |
Set the permissions string
|
OpenOptions |
OpenOptions.setRead(boolean read) |
Set whether the file is to be opened for reading
|
OpenOptions |
OpenOptions.setSparse(boolean sparse) |
Set whether a hint should be provided that the file to created is sparse
|
OpenOptions |
OpenOptions.setSync(boolean sync) |
Set whether every write to the file's content and meta-data will be written synchronously to the underlying hardware.
|
OpenOptions |
OpenOptions.setTruncateExisting(boolean truncateExisting) |
Set whether the file should be truncated to zero length on opening if it exists and is opened for write
|
OpenOptions |
OpenOptions.setWrite(boolean write) |
Set whether the file is to be opened for writing
|