任何人都知道如何使用Filesystem组件Symfony2来创建快捷方式文件?或者另一种创建文件快捷方式的方法?
答案 0 :(得分:1)
$filesystem = new Symfony\Component\Filesystem\Filesystem;
$filesystem->symlink($originDir, $targetDir, $copyOnWindows = false);
在本机PHP symlink
上使用Symfony Filesystem的原因是因为此方法将为您准备目录,将触发的错误转换为异常,并管理不支持符号链接的Windows上的兼容性,因此而是创建一个副本。
来源:https://github.com/symfony/symfony/blob/2.7/src/Symfony/Component/Filesystem/Filesystem.php#L289