文件

点击复制

模块提供了与文件一起工作的能力。


谷歌表格

该模块允许你自定义与谷歌表格的整合。


业务流程

  • Google Sheets: Remove sheet
  • Google Sheets: Clear sheet
  • Google Sheets: Create sheet
  • Google Sheets: Create spreadsheet
  • Google Sheets: Delete rows and columns from sheet

设置

参数预设描述
凭证文件-由谷歌云平台提供的credentials.json文件的路径

Google Drive

该模块提供了与Google Drive的集成


参数默认值描述说明
OAuth2客户端ID-由Google API Console提供。
OAuth2 客户端密码-由Google API Console提供。

数据模型

Google Drive Element - 储存文件和文件夹的虚拟模型。

Fields:

  • id (string)- 文件或文件夹的ID。
  • title (字符串) - 文件或文件夹的名称。

Google Drive: Create Folder

输入

  • title(string) - 文件夹的名称。

输出

  • folder_id (string)- 创建的文件夹的id。

Google Drive: Delete folder

输入

  • folder_id (string)- 文件夹的ID。

Google Drive: List files and folders

输出

  • files (array model)- 文件列表。
  • folders (array model) - 文件夹列表

Google Drive: Download file

输入

  • file_id (string)- 文件的id。

输出

  • data (file)- 下载的文件

Google Drive: Copy file

输入

  • file_id (string)- 文件的id。

输出

  • new_file_id (string)- id of new file.

Google Drive: Share file

输入

  • file_id (string)- 文件的ID。
  • emails (array email)- 分享的电子邮件。

Google Drive: Update file

输入

  • folder_id (string)- 文件夹的ID。
  • data (file)- 更新的文件。
  • title (string)- 文件的名称。
  • file_id (string)- 文件的ID。

Google Drive: Delete file

输入

  • file_id (string)- 文件的ID。

Google Drive: Share folder

输入

  • emails (array email)- 分享的电子邮件。
  • folder_id (string)- 文件夹的ID。

设置

业务流程