Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shikumiya-hata/b73135b1a1e86bb836a7b1f78ab86cf2 to your computer and use it in GitHub Desktop.
Save shikumiya-hata/b73135b1a1e86bb836a7b1f78ab86cf2 to your computer and use it in GitHub Desktop.
/**
* GoogleドライブのFolder型に変換
* @param {TeamDrive} teamDrive - 共有ドライブ
* @return {Folder} - フォルダ
*/
function toFolder(teamDrive) {
// 共有ドライブのIDからFolderオブジェクトを取得する
return DriveApp.getFolderById(teamDrive.id)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment