3

我想知道上传后的文件ID。从文件列表中找到它,我认为这不是好主意和性能。那么,我怎样才能获得好主意的文件ID?

谢谢!

4

1 回答 1

1

例如:

$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'];
于 2016-08-03T04:40:54.057 回答