51 public function write(
string $path,
string $content): void;
69 public function update(
string $path,
string $new_content): void;
88 public function put(
string $path,
string $content): void;
104 public function delete(
string $path):
void;
138 public function rename(
string $path,
string $new_path): void;
156 public function copy(
string $path,
string $copy_path): void;
rename(string $path, string $new_path)
Moves a file from the source to the destination.
update(string $path, string $new_content)
Updates the content of a file.
readAndDelete(string $path)
Reads the entire file content into a string and removes the file afterwards.
write(string $path, string $content)
Writes the content to a new file.
copy(string $path, string $copy_path)
Copy the source file to a destination.
put(string $path, string $content)
Creates a file or updates an existing one.
Interface FileWriteAccess.