class Filesystem
Provides basic utility to manipulate the file system.
Methods
copy(string $originFile, string $targetFile, bool $overwriteNewerFiles = false) Copies a file.
mkdir(string|array|Traversable $dirs, int $mode = 511) Creates a directory recursively.
bool exists(string|array|Traversable $files) Checks the existence of files or directories.
touch(string|array|Traversable $files, int $time = null, int $atime = null) Sets access and modification time of file.