파일 시스템 업데이트 - copyDirectory, ensureDirectoryExists 활용
FileSystem
use Illuminate\Filesystem\Filesystem;
copyDirectory
(new Filesystem)->copyDirectory(source, destination);
ensureDirectoryExists
디렉토리가 없을 경우 디렉토리를 생성한다.
(new Filesystem)->ensureDirectoryExists(destination);