$client = $this->getClient();
$service = new Drive($client);
$results = $service->files->listFiles();
$fileId="1IV0ZcPLPEj-y9xwqPAvjQgOUluOQEYhX";
$file = $service->files->get($fileId);
$file->getName();
How can i read the csv file content from filename?
Thanks