Appends data to the given file, creating it if it doesn't exist.
Appends data to the given file, creating it if it doesn't exist. May not
write all values from src
in the presence of errors, will emit a
FileSystemError for each input value that failed to write.
Returns a channel that appends chunks of data to the given file, creating it if it doesn't exist.
Returns a channel that appends chunks of data to the given file, creating it if it doesn't exist. Any errors encountered while writing are emitted, all attempts are made to continue consuming input until the source is exhausted.
Same as append
but accepts chunked Data
.
Appends the given data to the specified file, creating it if it doesn't exist.
Appends the given data to the specified file, creating it if it doesn't exist. May not write every given value in the presence of errors, returns a FileSystemError for each input value that failed to write.
Create the given file with the contents of src
.
Create the given file with the contents of src
. Fails if already exists.
Same as create
but accepts chunked Data
.
Create the given file with the contents of data
.
Create the given file with the contents of data
. Fails if already exists.
Replace the contents of the given file with src
.
Replace the contents of the given file with src
. Fails if the file
doesn't exist.
Same as replace
but accepts chunked Data
.
Replace the contents of the given file with data
.
Replace the contents of the given file with data
. Fails if the file
doesn't exist.
Write the data stream to the given path, replacing any existing contents, atomically.
Write the data stream to the given path, replacing any existing contents, atomically. Any errors during writing will abort the entire operation leaving any existing values unaffected.
Same as save
but accepts chunked Data
.
Write the given data to the specified file, replacing any existing contents, atomically.
Write the given data to the specified file, replacing any existing contents, atomically. Any errors during writing will abort the entire operation leaving any existing values unaffected.