\Omega\Filesystem\Adapter FilesystemAdapterInterface

Interface for the filesystem adapters.

This interface defines the contract for adapters that manage the interaction with different types of filesystems. The implementing classes provide basic operations like reading, writing, and deleting files, as well as working with file metadata.

Summary

Methods
Constants
read()
write()
exists()
keys()
mtime()
delete()
rename()
isDirectory()
No public constants found

Methods

read()

read(string  $key) : string|bool

Reads the content of the file.

This method reads the contents of a file identified by its key. If the file cannot be read, it returns false.

Parameters

string $key

The key or path of the file to read.

Returns

string|bool —

The content of the file or false if it cannot be read.

write()

write(string  $key, string  $content) : int|bool

Writes the given content into the file.

This method writes the provided content into a file identified by its key. It returns the number of bytes written or false if the write operation fails.

Parameters

string $key

The key or path of the file to write.

string $content

The content to write into the file.

Returns

int|bool —

The number of bytes written or false on failure.

exists()

exists(string  $key) : bool

Indicates whether the file exists.

This method checks if a file exists at the specified key.

Parameters

string $key

The key or path of the file to check.

Returns

bool —

True if the file exists, false otherwise.

keys()

keys() : array

Returns an array of all keys (files and directories).

This method retrieves a list of all keys (representing files and directories) managed by the filesystem.

Returns

array —

The list of keys.

mtime()

mtime(string  $key) : int|bool

Returns the last modified time.

This method returns the last modified time of a file, in a UNIX timestamp format. If the file cannot be found or accessed, it returns false.

Parameters

string $key

The key or path of the file.

Returns

int|bool —

The last modified time as a UNIX timestamp, or false on failure.

delete()

delete(string  $key) : bool

Deletes the file.

This method deletes the file identified by its key. It returns true if the operation is successful, or false if it fails.

Parameters

string $key

The key or path of the file to delete.

Returns

bool —

True on success, false on failure.

rename()

rename(string  $sourceKey, string  $targetKey) : bool

Renames a file.

This method renames a file from the source key to the target key. It returns true if the operation is successful, or false if it fails.

Parameters

string $sourceKey

The current key or path of the file.

string $targetKey

The new key or path for the file.

Returns

bool —

True on success, false on failure.

isDirectory()

isDirectory(string  $key) : bool

Check if the key represents a directory.

This method checks whether the specified key corresponds to a directory.

Parameters

string $key

The key or path to check.

Returns

bool —

True if the key is a directory, false otherwise.