ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
FileStreamWriteAccess.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
17 {
18 
31  public function writeStream(string $path, FileStream $stream);
32 
45  public function putStream(string $path, FileStream $stream);
46 
59  public function updateStream(string $path, FileStream $stream);
60 }
Interface FileStreamWriteAccess This interface describes the write operations for the streaming files...
writeStream(string $path, FileStream $stream)
Writes the stream to a new file.
putStream(string $path, FileStream $stream)
Creates a new file or updates an existing one.
updateStream(string $path, FileStream $stream)
Updates an existing file.
Interface FileStream The base interface for all filesystem streams.
Definition: FileStream.php:17