Interface DriveApp

Google ドライブへの操作を提供します。Provides operations to Google Drive.

Hierarchy

  • DriveApp

Methods

  • 指定されたBlobでGoogle ドライブのルートにファイルを作成します。Creates a file in the root of Google Drive with the specified Blob.

    Returns

    新しく作成されたファイルNewly created file

    Parameters

    • blob: Blob

      BlobデータBlob data

    Returns File

  • 指定された名前とコンテンツでGoogle ドライブのルートにファイルを作成します。Creates a file in the root of Google Drive with the specified name and contents.

    Returns

    新しく作成されたファイルNewly created file

    Parameters

    • name: string

      ファイル名File name

    • content: string

      ファイルのコンテンツ contents of file

    Returns File

  • 指定された名前とコンテンツとMIMEタイプでGoogle ドライブのルートにファイルを作成します。Creates a file in the root of Google Drive with the specified name, contents, and MIME type.

    Returns

    新しく作成されたファイルNewly created file

    Parameters

    • name: string

      ファイル名File name

    • content: string

      ファイルのコンテンツ contents of file

    • mimeType: string

      ファイルのMIMEタイプMIME type of the file

    Returns File

  • 指定された名前でGoogle ドライブのルートにフォルダを作成します。Creates a file in the root of Google Drive with the specified name.

    Returns

    新しく作成されたフォルダNewly created folder

    Parameters

    • name: string

      フォルダfolder

    Returns Folder

  • 指定されたIDでGoogle ドライブのファイルを取得します。Gets Google Drive files with the specified ID.

    Returns

    指定されたIDのファイルFile with the specified ID

    Parameters

    • id: string

      ファイルIDFile ID

    Returns File

  • Google ドライブの全てのファイルを取得します。Gets all files in Google Drive.

    Returns

    ファイルのコレクションCollection of files

    Returns FileIterator

  • 指定されたファイル名でGoogle ドライブのファイルを取得します。Gets Google Drive files with the specified ID.

    Returns

    指定されたファイル名のファイルコレクションA collection of files with the specified file name

    Parameters

    • name: string

      ファイル名File name

    Returns FileIterator

  • 指定されたMIMEタイプでGoogle ドライブのファイルを取得します。Gets Google Drive files with the specified MIME type.

    Returns

    指定されたMIMEタイプのファイルコレクションA collection of files of the specified MIME type

    Parameters

    • mimeType: string

      ファイルのMIMEタイプMIME type of the file

    Returns FileIterator

  • 指定されたIDでGoogle ドライブのフォルダを取得します。Gets Google Drive folders with the specified ID.

    Returns

    指定されたIDのフォルダFolder with specified ID

    Parameters

    • id: string

      フォルダIDFolder ID

    Returns Folder

  • Google ドライブの全てのフォルダを取得します。Gets all folders in Google Drive.

    Returns

    フォルダのコレクションCollection of folders

    Returns FolderIterator

  • 指定されたフォルダ名でGoogle ドライブのフォルダを取得します。Gets Google Drive folders with the specified folder name.

    Returns

    指定されたフォルダ名のフォルダコレクションA collection of folders with the specified folder name.

    Parameters

    • name: string

      フォルダ名Folder name

    Returns FolderIterator

  • Google ドライブのルートフォルダを取得します。Gets the root folder of Google Drive.

    Returns

    ルートフォルダRoot folder

    Returns Folder