2 declare(strict_types=1);
48 public function read(
string $path) : string
52 $adapter = $this->flySystemFS->getAdapter();
53 if (!$adapter->has($path)) {
54 throw new \League\Flysystem\FileNotFoundException($path);
56 $object = $adapter->read($path);
60 throw new IOException(
"Could not access the file \"$path\".");
76 public function has(
string $path) : bool
78 return $this->flySystemFS->has($path);
91 $mimeType = $this->flySystemFS->getMimetype($path);
92 if ($mimeType ===
false) {
93 throw new IOException(
"Could not determine the MIME type of the file \"$path\".");
114 $rawTimestamp = $this->flySystemFS->getTimestamp($path);
115 if ($rawTimestamp ===
false) {
116 throw new IOException(
"Could not lookup timestamp of the file \"$path\".");
119 if (is_numeric($rawTimestamp)) {
120 $rawTimestamp =
'@' . $rawTimestamp;
123 return new \DateTimeImmutable($rawTimestamp);
144 $byteSize = $this->flySystemFS->
getSize($path);
147 if ($byteSize ===
false) {
148 throw new IOException(
"Could not calculate the file size of the file \"$path\".");
173 if ($this->
has($path) ===
false) {
179 return $this->flySystemFS->setVisibility($path, $visibility);
193 throw new \InvalidArgumentException(
"The access must be 'public' or 'private' but '$visibility' was given.");
211 if ($this->
has($path) ===
false) {
215 $visibility = $this->flySystemFS->getVisibility($path);
217 if ($visibility ===
false) {
218 throw new IOException(
"Could not determine visibility for path '$path'.");
234 public function write(
string $path,
string $content)
237 if ($this->flySystemFS->write($path, $content) ===
false) {
238 throw new IOException(
"Could not write to file \"$path\" because a general IO error occurred. Please check that your destination is writable.");
240 }
catch (FileExistsException $ex) {
256 public function update(
string $path,
string $newContent)
259 if ($this->flySystemFS->update($path, $newContent) ===
false) {
260 throw new IOException(
"Could not write to file \"$path\" because a general IO error occurred. Please check that your destination is writable.");
276 public function put(
string $path,
string $content)
278 if ($this->flySystemFS->put($path, $content) ===
false) {
279 throw new IOException(
"Could not write to file \"$path\" because a general IO error occurred. Please check that your destination is writable.");
292 public function delete(
string $path)
295 if ($this->flySystemFS->delete($path) ===
false) {
296 throw new IOException(
"Could not delete file \"$path\" because a general IO error occurred. Please check that your target is writable.");
314 $content = $this->
read($path);
315 $this->
delete($path);
331 public function rename(
string $path,
string $newPath)
334 if ($this->flySystemFS->rename($path, $newPath) ===
false) {
335 throw new IOException(
"Could not move file from \"$path\" to \"$newPath\".");
337 }
catch (FileExistsException $ex) {
355 public function copy(
string $path,
string $copyPath)
358 if ($this->flySystemFS->copy($path, $copyPath) ===
false) {
359 throw new IOException(
"Could not copy file \"$path\" to destination \"$copyPath\" because a general IO error occurred. Please check that your destination is writable.");
361 }
catch (FileExistsException $ex) {
rename(string $path, string $newPath)
Moves a file from the source to the destination.
Class FileAlreadyExistsException.
put(string $path, string $content)
Creates a file or updates an existing one.
Class IOException Indicates general problems with the input or output operations. ...
validateVisibility(string $visibility)
Checks if the given visibility is valid an throws an exception otherwise.
Class FlySystemFileAccess Fly system file access implementation.
read(string $path)
Reads a file content to a string.
readAndDelete(string $path)
Reads the entire file content into a string and removes the file afterwards.
getSize(string $path, int $fileSizeUnit)
Get the size of a file.
getVisibility(string $path)
Get the file visibility.
copy(string $path, string $copyPath)
Copy the source file to a destination.
const PRIVATE_ACCESS
Private file visibility.
update(string $path, string $newContent)
Updates the content of a file.
setVisibility(string $path, string $visibility)
Sets the visibility for a file.
getSize()
The calculated data size.
Class FileNotFoundException Indicates that a file is missing or not found.
has(string $path)
Checks whether a file exists.
write(string $path, string $content)
Writes the content to a new file.
const PUBLIC_ACCESS
Public file visibility.
getTimestamp(string $path)
Get the timestamp (mtime) of the file.
__construct(FilesystemInterface $flySystemFS)
FlySystemFileAccess constructor.
static normalizeRelativePath($path)
getMimeType(string $path)
Get a files mime-type.
Interface FileAccess The FileAccess interface defines all file operations.