mirror of
https://github.com/danog/file.git
synced 2024-12-02 09:17:57 +01:00
149 lines
4.2 KiB
PHP
149 lines
4.2 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Amp\File;
|
|
|
|
interface FilesystemDriver
|
|
{
|
|
/**
|
|
* Open a handle for the specified path.
|
|
*
|
|
* @throws FilesystemException
|
|
*/
|
|
public function openFile(string $path, string $mode): File;
|
|
|
|
/**
|
|
* Get file status; also known as stat operation.
|
|
*
|
|
* If the requested path does not exist, it returns {@code null}.
|
|
*
|
|
* @param string $path The file system path to stat.
|
|
*/
|
|
public function getStatus(string $path): ?array;
|
|
|
|
/**
|
|
* Same as {@see FilesystemDriver::getStatus()} except if the path is a link then the link's data is returned.
|
|
*
|
|
* If the requested path does not exist, this method will return NULL.
|
|
*
|
|
* @param string $path The file system path to stat.
|
|
*
|
|
* @return array|null An associative array upon successful completion.
|
|
*/
|
|
public function getLinkStatus(string $path): ?array;
|
|
|
|
/**
|
|
* Create a symlink $link pointing to the file/directory located at $target.
|
|
*
|
|
* @throws FilesystemException
|
|
*/
|
|
public function createSymlink(string $target, string $link): void;
|
|
|
|
/**
|
|
* Create a hard link $link pointing to the file/directory located at $target.
|
|
*
|
|
* @throws FilesystemException
|
|
*/
|
|
public function createHardlink(string $target, string $link): void;
|
|
|
|
/**
|
|
* Resolve the symlink at $path.
|
|
*
|
|
* @throws FilesystemException
|
|
*/
|
|
public function resolveSymlink(string $target): string;
|
|
|
|
/**
|
|
* Move / rename a file or directory.
|
|
*
|
|
* @throws FilesystemException
|
|
*/
|
|
public function move(string $from, string $to): void;
|
|
|
|
/**
|
|
* Delete a file.
|
|
*
|
|
* @throws FilesystemException
|
|
*/
|
|
public function deleteFile(string $path): void;
|
|
|
|
/**
|
|
* Create a directory.
|
|
*
|
|
* @throws FilesystemException
|
|
*/
|
|
public function createDirectory(string $path, int $mode = 0777): void;
|
|
|
|
/**
|
|
* Create a directory recursively.
|
|
*
|
|
* @throws FilesystemException If the operation fails.
|
|
*/
|
|
public function createDirectoryRecursively(string $path, int $mode = 0777): void;
|
|
|
|
/**
|
|
* Delete a directory.
|
|
*
|
|
* @throws FilesystemException If the operation fails.
|
|
*/
|
|
public function deleteDirectory(string $path): void;
|
|
|
|
/**
|
|
* Retrieve an array of files and directories inside the specified path.
|
|
*
|
|
* Dot entries are not included in the resulting array (i.e. "." and "..").
|
|
*
|
|
* @return list<string>
|
|
*
|
|
* @throws FilesystemException If the operation fails.
|
|
*/
|
|
public function listFiles(string $path): array;
|
|
|
|
/**
|
|
* chmod a file or directory.
|
|
*
|
|
* @throws FilesystemException If the operation fails.
|
|
*/
|
|
public function changePermissions(string $path, int $mode): void;
|
|
|
|
/**
|
|
* chown a file or directory.
|
|
*
|
|
* @throws FilesystemException If the operation fails.
|
|
*/
|
|
public function changeOwner(string $path, ?int $uid, ?int $gid): void;
|
|
|
|
/**
|
|
* Update the access and modification time of the specified path.
|
|
*
|
|
* If the file does not exist it will be created automatically.
|
|
*
|
|
* @param int|null $modificationTime The touch time. If $time is not supplied, the current system time is used.
|
|
* @param int|null $accessTime The access time. If $atime is not supplied, value passed to the $time parameter is
|
|
* used.
|
|
*
|
|
* @throws FilesystemException If the operation fails.
|
|
*/
|
|
public function touch(string $path, ?int $modificationTime, ?int $accessTime): void;
|
|
|
|
/**
|
|
* Buffer the specified file's contents.
|
|
*
|
|
* @param string $path The file path from which to buffer contents.
|
|
*
|
|
* @return string The file contents.
|
|
*
|
|
* @throws FilesystemException If the operation fails.
|
|
*/
|
|
public function read(string $path): string;
|
|
|
|
/**
|
|
* Write the contents string to the specified path.
|
|
*
|
|
* @param string $path The file path to which to $contents should be written.
|
|
* @param string $contents The data to write to the specified $path.
|
|
*
|
|
* @throws FilesystemException If the operation fails.
|
|
*/
|
|
public function write(string $path, string $contents): void;
|
|
}
|