disk = Storage::disk('ftp'); } public function getFiles(): array { return $this->disk->files(); } public function getFileContent(string $file): string { return $this->disk->get($file); } public function moveFile(string $file, string $destination): bool { return $this->disk->move($file, $destination); } // public function deleteFile(string $file): bool // { // return $this->disk->delete($file); // } }