FileSystem
use Illuminate\Filesystem\Filesystem;
copyDirectory
(new Filesystem)->copyDirectory(source, destination);
ensureDirectoryExists
디렉토리가 없을 경우 디렉토리를 생성한다.
(new Filesystem)->ensureDirectoryExists(destination);
use Illuminate\Filesystem\Filesystem;
(new Filesystem)->copyDirectory(source, destination);
디렉토리가 없을 경우 디렉토리를 생성한다.
(new Filesystem)->ensureDirectoryExists(destination);