這個 Google Docs API 頁面說明如何執行特定高階工作 ,例如:
- 建立文件
- 複製現有文件
下列段落將詳細說明這些工作。
建立空白文件
如要建立文件,請使用
documents.create
方法
documents
集合。
以下程式碼範例顯示如何使用 標題:
Java
private static void createDoc(Docs service) throws IOException { Document doc = new Document() .setTitle("My Document"); doc = service.documents().create(doc) .execute(); System.out.println("Created document with title: " + doc.getTitle()); }
PHP
$title = 'My Document'; $document = new Google_Service_Docs_Document(array( 'title' => $title )); $document = $service->documents->create($document); printf("Created document with title: %s\n", $document->title);
Python
title = 'My Document' body = { 'title': title } doc = service.documents() \ .create(body=body).execute() print('Created document with title: {0}'.format( doc.get('title')))
使用 Google 雲端硬碟資料夾
無法在指定的文件內直接建立文件 使用 Docs API 的雲端硬碟資料夾。根據預設, 新建立的文件會儲存至使用者的雲端硬碟根資料夾。
不過,將檔案儲存到雲端硬碟的方法有兩種 資料夾:
建立文件後,使用以下選項將文件移至特定資料夾: Drive API 的
files.update
方法。如要進一步瞭解如何移動檔案,請參閱在檔案之間移動檔案。 資料夾。請使用 Drive API,將空白文件新增至資料夾
files.create
方法,指定application/vnd.google-apps.document
做為mimeType
。如要 如要瞭解如何建立檔案,請參閱在 資料夾。
無論採用哪種方法,您都必須新增適當的 Drive API 授權範圍 呼叫。如要進一步瞭解雲端硬碟範圍,請參閱選擇 Google Drive API 範圍。
如要在共用雲端硬碟資料夾中移動或建立檔案,請參閱實作共用雲端硬碟 。
複製現有文件
如要複製文件,請使用 Drive API 的
files.copy
方法,增加圍繞地圖邊緣的邊框間距。
以下程式碼範例顯示如何複製現有文件。您可以 要在文件網址中用於 Drive API 呼叫的 ID。如要 請參閱「文件 ID」。
https://docs.google.com/document/d/DOCUMENT_ID/edit
Java
String copyTitle = "Copy Title"; File copyMetadata = new File().setName(copyTitle); File documentCopyFile = driveService.files().copy(documentId, copyMetadata).execute(); String documentCopyId = documentCopyFile.getId();
Node.js
var copyTitle = "Copy Title"; let request = { name: copyTitle, }; this.driveService.files.copy({ fileId: documentId, resource: request, }, (err, driveResponse) => { let documentCopyId = driveResponse.id; });
PHP
<?php $copyTitle = 'Copy Title'; $copy = new Google_Service_Drive_DriveFile(array( 'name' => $copyTitle )); $driveResponse = $driveService->files->copy($documentId, $copy); $documentCopyId = $driveResponse->id;
Python
copy_title = 'Copy Title' body = { 'name': copy_title } drive_response = drive_service.files().copy( fileId=document_id, body=body).execute() document_copy_id = drive_response.get('id')
請注意,您必須使用適當的 Drive API 範圍來授權 呼叫。如要進一步瞭解雲端硬碟範圍,請參閱選擇 Google Drive API 範圍。