$initialized
$initialized : bool
Indicates if the adapter has been initialized.
Sftp Adapter.
This class provides an interface for interacting with a remote SFTP server. It implements methods for reading, writing, renaming, deleting files, and managing directories. The adapter can be initialized with a remote directory and offers options to create it if it does not exist. This class requires the "phpseclib/phpseclib" package for SFTP functionality.
__construct(\phpseclib\Net\SFTP $sftp, string|null $directory = null, bool $create = false) : mixed
Constructor for the Sftp adapter.
Initializes an instance of the Sftp adapter with the provided SFTP connection, remote directory, and option to create the directory if it does not exist.
\phpseclib\Net\SFTP | $sftp | An Sftp instance for SFTP operations. |
string|null | $directory | The remote directory to use. |
bool | $create | Whether to create the remote directory if it does not exist. |
if the SecLibSFTP class is not available.
createFile(string $key, \Omega\Filesystem\Filesystem $filesystem) : \Omega\Filesystem\File
Creates a new File instance.
string | $key | The unique key that identifies the file in the filesystem. |
\Omega\Filesystem\Filesystem | $filesystem | The filesystem instance that will manage the file. |
Returns a new instance of the File
class.
ensureDirectoryExists(string $directory, bool $create) : void
Ensures that the specified directory exists.
If the directory does not exist and $create is true, it will attempt to create it.
string | $directory | The directory to check. |
bool | $create | Whether to create the directory if it does not exist. |
if the directory does not exist and cannot be created.
fetchKeys(string $directory = '', bool $onlyKeys = true) : array
Fetches keys and directories from the specified directory.
string | $directory | The directory to fetch keys from. |
bool | $onlyKeys | Whether to only fetch file keys. |
An associative array containing keys and directories.