我想知道上传后的文件ID。从文件列表中找到它,我认为这不是好主意和性能。那么,我怎样才能获得好主意的文件ID?
谢谢!
例如:
$file = new Google_Service_Drive_DriveFile();
$file->setName($fileTitle);
$result = $service->files->create(
$file,
array(
'data' => file_get_contents(FILE),
'mimeType' => 'application/octet-stream',
'uploadType' => 'multipart'
)
);
var $result 包含上传文件的所有信息,所以你所要做的就是显示或使用 id。
echo 'Uploaded file id is '.$result['id'];