- Flysystem >= 1.0.0
Using composer:
composer require falc/flysystem-local-symlink-plugin
Or add it manually:
{
"require": {
"falc/flysystem-local-symlink-plugin": "1.*"
}
}
This plugin requires a Filesystem
instance using the Local adapter.
use Falc\Flysystem\Plugin\Symlink\Local as LocalSymlinkPlugin;
use League\Flysystem\Adapter\Local as LocalAdapter;
use League\Flysystem\Filesystem;
$filesystem = new Filesystem(new LocalAdapter('/'));
Use symlink($target, $symlink)
to create a symlink.
$filesystem->addPlugin(new LocalSymlinkPlugin\Symlink());
$success = $filesystem->symlink('/tmp/some/target', '/tmp/symlink');
Use deleteSymlink($symlink)
to delete a symlink.
$filesystem->addPlugin(new LocalSymlinkPlugin\DeleteSymlink());
$success = $filesystem->deleteSymlink('/tmp/symlink');
Use isSymlink($filename)
to check if a file exists and is a symlink.
$filesystem->addPlugin(new LocalSymlinkPlugin\IsSymlink());
$isSymlink = $filesystem->isSymlink('/tmp/symlink');
The above examples show how to create symlinks using /
as root and full paths. But it is possible to use relative paths too.
use Falc\Flysystem\Plugin\Symlink\Local as LocalSymlinkPlugin;
use League\Flysystem\Adapter\Local as LocalAdapter;
use League\Flysystem\Filesystem;
$filesystem = new Filesystem(new LocalAdapter('/home/falc'));
$filesystem->addPlugin(new LocalSymlinkPlugin\Symlink());
$filesystem->addPlugin(new LocalSymlinkPlugin\IsSymlink());
$filesystem->addPlugin(new LocalSymlinkPlugin\DeleteSymlink());
// Result: /home/falc/flytest -> /home/falc/projects/cli/flytest
$filesystem->symlink('projects/cli/flytest', 'flytest');
// It is possible to check it or delete it in the same way:
$isSymlink = $filesystem->isSymlink('flytest');
$filesystem->deleteSymlink('flytest');