Google 雲端硬碟中的資料夾。你可以前往 DriveApp
存取或建立資料夾。
// Log the name of every folder in the user's Drive. var folders = DriveApp.getFolders(); while (folders.hasNext()) { var folder = folders.next(); Logger.log(folder.getName()); }
方法
內容詳盡的說明文件
addEditor(emailAddress)
addEditor(user)
addEditors(emailAddresses)
addViewer(emailAddress)
addViewer(user)
addViewers(emailAddresses)
createFile(blob)
從指定的任意資料的 Blob
在目前的資料夾中建立檔案。
// Create an image file in Google Drive using the Maps service. var blob = Maps.newStaticMap().setCenter('76 9th Avenue, New York NY').getBlob(); DriveApp.getRootFolder().createFile(blob);
參數
名稱 | 類型 | 說明 |
---|---|---|
blob | BlobSource | 新檔案的資料。 |
回攻員
File
:新檔案。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive
createFile(name, content)
以指定的名稱和內容在目前的資料夾中建立文字檔案。擲回
如果 content
大於 50 MB,則不符合例外狀況。
// Create a text file with the content "Hello, world!" DriveApp.getRootFolder().createFile('New Text File', 'Hello, world!');
參數
名稱 | 類型 | 說明 |
---|---|---|
name | String | 新檔案的名稱。 |
content | String | 新檔案的內容。 |
回攻員
File
:新檔案。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive
createFile(name, content, mimeType)
以指定名稱、內容和 MIME 類型在目前的資料夾中建立檔案。擲回
如果 content
大於 10 MB,便會產生例外狀況。
// Create an HTML file with the content "Hello, world!" DriveApp.getRootFolder().createFile('New HTML File', '<b>Hello, world!</b>', MimeType.HTML);
參數
名稱 | 類型 | 說明 |
---|---|---|
name | String | 新檔案的名稱。 |
content | String | 新檔案的內容。 |
mimeType | String | 新檔案的 MIME 類型。 |
回攻員
File
:新檔案。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive
createFolder(name)
createShortcut(targetId)
createShortcutForTargetIdAndResourceKey(targetId, targetResourceKey)
建立並傳回所提供雲端硬碟項目 ID 和資源金鑰的捷徑。資源 鍵是額外參數,必須傳遞出另一個參數,才能存取目標檔案或資料夾 已經透過連結分享。
// Creates shortcuts for all folders in the user's drive that have a specific name. // TODO(developer): Replace 'Test-Folder' with a valid folder name in your drive. const folders = DriveApp.getFoldersByName('Test-Folder'); // Iterates through all folders named 'Test-Folder'. while (folders.hasNext()) { const folder = folders.next(); // Creates a shortcut to the provided Drive item ID and resource key, and returns it. DriveApp.createShortcutForTargetIdAndResourceKey(folder.getId(), folder.getResourceKey()); }
參數
名稱 | 類型 | 說明 |
---|---|---|
targetId | String | 目標檔案或資料夾的 ID。 |
targetResourceKey | String | 目標檔案或資料夾的資源金鑰。 |
回攻員
File
:新的捷徑。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive
getAccess(email)
取得授予指定使用者的權限。
參數
名稱 | 類型 | 說明 |
---|---|---|
email | String | 應檢查其權限的使用者電子郵件地址 |
回攻員
Permission
:授予使用者的權限
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getAccess(user)
取得授予指定使用者的權限。
參數
名稱 | 類型 | 說明 |
---|---|---|
user | User | 代表應檢查其權限的使用者 |
回攻員
Permission
:授予使用者的權限
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getDateCreated()
getDescription()
getEditors()
取得這個 Folder
的編輯者清單。如果執行指令碼的使用者
沒有 Folder
的編輯權限,這個方法會傳回空陣列。
// Gets a folder by its ID. // TODO(developer): Replace the folder ID with your own. const folder = DriveApp.getFolderById('1234567890abcdefghijklmnopqrstuvwxyz'); // Gets the list of editors and logs their names to the console. const editors = folder.getEditors(); for (editor of editors) { console.log(editor.getName()); }
回攻員
User[]
:這個 Folder
的編輯者清單 (使用者俱有編輯權限或
否則就是空陣列。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getFiles()
取得目前資料夾所有子檔案的集合。
回攻員
FileIterator
- 目前資料夾子項的所有檔案集合。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getFilesByName(name)
取得目前資料夾子項,且具有指定名稱的所有檔案的集合。
參數
名稱 | 類型 | 說明 |
---|---|---|
name | String | 要尋找的檔案名稱。 |
回攻員
FileIterator
- 目前資料夾子項且具有指定名稱的所有檔案的集合。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getFilesByType(mimeType)
取得目前資料夾的子項,且具有指定 MIME 類型的所有檔案的集合。
參數
名稱 | 類型 | 說明 |
---|---|---|
mimeType | String | 要尋找的檔案 MIME 類型。 |
回攻員
FileIterator
:這是目前資料夾子項,且具有指定 MIME 的所有檔案集合
類型。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getFolders()
取得目前資料夾子項的所有資料夾集合。
回攻員
FolderIterator
- 目前資料夾子項的所有資料夾集合。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getFoldersByName(name)
取得目前資料夾的子項,且具有指定名稱的所有資料夾集合。
參數
名稱 | 類型 | 說明 |
---|---|---|
name | String | 要尋找的資料夾名稱。 |
回攻員
FolderIterator
— 目前資料夾的子項,且具有特定名稱的一組資料夾。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getId()
getLastUpdated()
getName()
getOwner()
取得這個 Folder
的擁有者。
// Gets a folder by its ID. // TODO(developer): Replace the folder ID with your own. const folder = DriveApp.getFolderById('1234567890abcdefghijklmnopqrstuvwxyz'); // Gets the owner of the folder and logs the name to the console. const folderOwner = folder.getOwner(); console.log(folderOwner.getName());
回攻員
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getParents()
取得一組資料夾,這些資料夾是 Folder
的直接父項。
回攻員
FolderIterator
:一組資料夾,是 Folder
的直系父項資料夾
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getResourceKey()
getSecurityUpdateEligible()
確認這部Folder
是否符合套用安全性更新的
透過連結共用時,需要資源金鑰才能存取。
Google 雲端硬碟需要資源金鑰,才能存取某些透過 Google 帳戶共用的檔案或資料夾
連結。這項異動是安全性更新的一部分。更新預設會啟用
檔案與資料夾如要為符合資格的檔案開啟或關閉資源金鑰規定,請使用
setSecurityUpdateEnabled
。
進一步瞭解 Google 雲端硬碟安全性更新。
回攻員
Boolean
:是否可對 Folder
套用資源金鑰規定。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getSecurityUpdateEnabled()
取得在適當情況下,這個 Folder
是否需要資源金鑰才能存取
透過連結分享。針對符合條件的檔案和資料夾,系統預設會啟用這項規定。
如要為符合資格的檔案開啟或關閉資源金鑰規定,請使用
setSecurityUpdateEnabled
。
進一步瞭解 Google 雲端硬碟安全性更新。
回攻員
Boolean
:這個 Folder
是否已啟用資源金鑰規定。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getSharingAccess()
getSharingPermission()
取得權限授予有權存取 Folder
的使用者。
向任何已明確授予存取權的使用者除外。
回攻員
Permission
:授予使用者 Folder
存取權
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
getSize()
getUrl()
getViewers()
取得這個Folder
的檢視者和加註者名單。如果
執行指令碼沒有 Folder
(此方法) 的編輯權限
會傳回空陣列。
// Gets a folder by its ID. // TODO(developer): Replace the folder ID with your own. const folder = DriveApp.getFolderById('1234567890abcdefghijklmnopqrstuvwxyz'); // Gets the list of viewers and logs their names to the console. const viewers = folder.getViewers(); for (viewer of viewers) { console.log(viewer.getName()); }
回攻員
User[]
:這個 Folder
的檢視者和加註者清單 (如果使用者有編輯權限)
否則就會傳回空陣列
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
isStarred()
isTrashed()
moveTo(destination)
removeEditor(emailAddress)
removeEditor(user)
removeViewer(emailAddress)
removeViewer(user)
revokePermissions(emailAddress)
revokePermissions(user)
searchFiles(params)
取得目前資料夾內符合指定搜尋條件的所有檔案的集合 標準。如要進一步瞭解搜尋條件,請參閱 Google 雲端硬碟 SDK 說明文件。請注意,雲端硬碟 服務使用的 Drive API v2,部分查詢欄位與第 3 版不同。查看欄位 第 2 版和第 3 版的差異。
params
引數是可包含字串值的查詢字串,請謹慎思考
才能正確逸出引號 (例如 "title contains 'Gulliver\\'s
Travels'"
或 'title contains "Gulliver\'s Travels"'
)。
// Logs the name of every file that are children of the current folder and modified after February 28, // 2022 whose name contains "untitled."" var files = DriveApp.getRootFolder().searchFiles( 'modifiedDate > "2022-02-28" and title contains "untitled"'); while (files.hasNext()) { var file = files.next(); console.log(file.getName()); }
參數
名稱 | 類型 | 說明 |
---|---|---|
params | String | 搜尋條件 (詳情請參閱 Google 雲端硬碟 SDK 說明文件)。 |
回攻員
FileIterator
- 目前資料夾子項與搜尋條件相符的所有檔案的集合
標準。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
searchFolders(params)
取得目前資料夾的子項資料夾集合,且這些資料夾符合指定的搜尋條件 標準。如要進一步瞭解搜尋條件,請參閱 Google 雲端硬碟 SDK 說明文件。請注意,雲端硬碟 服務使用的 Drive API v2,部分查詢欄位與第 3 版不同。查看欄位 第 2 版和第 3 版的差異。
params
引數是可包含字串值的查詢字串,請謹慎思考
才能正確逸出引號 (例如 "title contains 'Gulliver\\'s
Travels'"
或 'title contains "Gulliver\'s Travels"'
)。
// Logs the name of every folder that are children of the current folder and you own and is starred. var folders = DriveApp.getRootFolder().searchFolders('starred = true and "me" in owners'); while (folders.hasNext()) { var folder = folders.next(); console.log(folder.getName()); }
參數
名稱 | 類型 | 說明 |
---|---|---|
params | String | 搜尋條件 (詳情請參閱 Google 雲端硬碟 SDK 說明文件)。 |
回攻員
FolderIterator
- 目前資料夾子項與搜尋條件相符的所有資料夾集合
標準。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive.readonly
-
https://www.googleapis.com/auth/drive
setDescription(description)
setName(name)
setOwner(emailAddress)
setOwner(user)
setSecurityUpdateEnabled(enabled)
setSharing(accessType, permissionType)
設定可存取 Folder
的使用者類別及權限
這些使用者除了獲得明確存取權的任何個別使用者外,
// Creates a folder that anyone on the Internet can read from and write to. (Domain // administrators can prohibit this setting for users of a Google Workspace domain.) var folder = DriveApp.createFolder('Shared Folder'); folder.setSharing(DriveApp.Access.ANYONE, DriveApp.Permission.EDIT);
參數
名稱 | 類型 | 說明 |
---|---|---|
accessType | Access | 哪些使用者類別應能存取 Folder |
permissionType | Permission | 應授予哪些使用者有權存取 Folder 的權限 |
回攻員
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/drive