批量自动共享Google Drive文件并生成直接下载链接
中级
这是一个IT Ops领域的自动化工作流,包含 9 个节点。主要使用 Set, Code, Merge, GoogleDrive, ManualTrigger 等节点。 批量自动共享Google Drive文件并生成直接下载链接
前置要求
- •Google Drive API 凭证
分类
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"meta": {
"instanceId": "c59a6b1daf09a846754bc2cf0a94db3299bd5a69fb14687c3a5e692704c548dd"
},
"nodes": [
{
"id": "2165cd37-10ff-46bd-88a5-c8377bf4bef7",
"name": "Google Drive",
"type": "n8n-nodes-base.googleDrive",
"position": [
1280,
1100
],
"parameters": {
"limit": 100,
"options": {
"spaces": [
"*"
],
"corpora": "allDrives"
},
"operation": "list",
"queryString": "='{{ $json[\"Folder ID\"] }}' in parents",
"authentication": "oAuth2",
"useQueryString": true
},
"credentials": {
"googleDriveOAuth2Api": {
"id": "KJE0ZORR1Q1fJCd5",
"name": "Google Drive account 2"
}
},
"typeVersion": 1
},
{
"id": "5061db5e-2137-4c50-8902-a24cd53a6bdf",
"name": "遍历项目",
"type": "n8n-nodes-base.splitInBatches",
"position": [
1480,
1160
],
"parameters": {
"options": {},
"batchSize": 50
},
"typeVersion": 3
},
{
"id": "62a16fb8-9bfc-46db-a556-23fac7f403f5",
"name": "合并",
"type": "n8n-nodes-base.merge",
"position": [
1720,
1020
],
"parameters": {
"mode": "combine",
"options": {},
"combinationMode": "multiplex"
},
"typeVersion": 2.1
},
{
"id": "bd410148-e745-43a2-960b-128bbb49828f",
"name": "设置文件夹 ID",
"type": "n8n-nodes-base.set",
"notes": "Enter desired Folder",
"position": [
1120,
1100
],
"parameters": {
"fields": {
"values": [
{
"name": "Folder ID",
"stringValue": "Enter Your Folder ID here"
}
]
},
"options": {}
},
"notesInFlow": true,
"typeVersion": 3.2
},
{
"id": "16def9df-5c8b-4359-a879-11e66f191f92",
"name": "手动执行工作流",
"type": "n8n-nodes-base.manualTrigger",
"notes": "Optional",
"position": [
940,
1100
],
"parameters": {},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "e7d54620-e5e6-470e-add5-ccefdfb2a979",
"name": "生成下载链接",
"type": "n8n-nodes-base.code",
"position": [
1480,
980
],
"parameters": {
"jsCode": "// This function will create an array of file links from the given Google Drive folder\nreturn items.map(file => {\n return { json: { 'link': `https://drive.google.com/u/3/uc?id=${file.json.id}&export=download&confirm=t&authuser=0`, 'name': file.json.name } };\n});"
},
"typeVersion": 2
},
{
"id": "04e71edf-c40f-4c80-961c-f511e145232c",
"name": "更改状态",
"type": "n8n-nodes-base.googleDrive",
"notes": "Make Files Public to anyone with a link",
"position": [
1660,
1180
],
"parameters": {
"fileId": {
"__rl": true,
"mode": "id",
"value": "={{ $json.id }}"
},
"options": {
"supportsAllDrives": true
},
"operation": "share",
"permissionsUi": {
"permissionsValues": {
"role": "reader",
"type": "anyone"
}
},
"authentication": "oAuth2"
},
"credentials": {
"googleDriveOAuth2Api": {
"id": "KJE0ZORR1Q1fJCd5",
"name": "Google Drive account 2"
}
},
"notesInFlow": true,
"typeVersion": 1
},
{
"id": "4452cd81-e94a-465e-987b-5acf46e25428",
"name": "替换我",
"type": "n8n-nodes-base.noOp",
"position": [
1880,
1020
],
"parameters": {},
"typeVersion": 1
},
{
"id": "dab69e10-d9af-4ece-a6c6-cb35468e3bf0",
"name": "便签",
"type": "n8n-nodes-base.stickyNote",
"position": [
880,
820
],
"parameters": {
"width": 1235.0111197082438,
"height": 545.6382804772701,
"content": "## 示例输出:"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"Merge": {
"main": [
[
{
"node": "Replace Me",
"type": "main",
"index": 0
}
]
]
},
"Google Drive": {
"main": [
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
},
{
"node": "Generate Download Links",
"type": "main",
"index": 0
}
]
]
},
"Change Status": {
"main": [
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
}
]
]
},
"Set Folder ID": {
"main": [
[
{
"node": "Google Drive",
"type": "main",
"index": 0
}
]
]
},
"Loop Over Items": {
"main": [
[
{
"node": "Merge",
"type": "main",
"index": 1
}
],
[
{
"node": "Change Status",
"type": "main",
"index": 0
}
]
]
},
"Generate Download Links": {
"main": [
[
{
"node": "Merge",
"type": "main",
"index": 0
}
]
]
},
"Manual Execute Workflow": {
"main": [
[
{
"node": "Set Folder ID",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
中级 - IT 运维
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
使用 Qdrant 的完整 RAG 系统,带自动来源引用
使用Qdrant、Gemini和OpenAI构建带自动引用的RAG系统
Set
Code
Wait
+15
29 节点Davide
人工智能
📁🔁 Google Drive 复制文件夹结构 (n8n)
在Google Drive中复制文件夹结构(不含文件)
If
Set
Code
+5
12 节点Builds.Cool
IT 运维
使用Google套件、PDF和邮件自动化商业保险提交
通过Google套件、PDF和邮件自动化商业保险提交流程
If
Set
Code
+10
37 节点David Olusola
文档提取
敏捷团队冲刺规划自动化
使用OpenAI、Google日历和Gmail为敏捷团队自动化冲刺规划
If
Set
Code
+17
52 节点Willemijn
产品
AI智能助手:与Supabase存储和Google Drive文件对话
AI智能助手:与Supabase存储和Google Drive文件对话
If
Set
Wait
+20
62 节点Mark Shcherbakov
工程
↔️ Airtable批量处理
Airtable批量更新/插入行(发送更快+节省API调用请求)
If
Set
Code
+12
35 节点Simon Mayerhofer
IT 运维
工作流信息
难度等级
中级
节点数量9
分类1
节点类型8
作者
Nskha
@nskhaWelcome to Nskha! We're all about making real changes in the no-code tech field, just like with N8N 😉. Check out our amazing collection of free public templates and join us in building a collaborative database of no-code idea projects. Let's revolutionize the way we create without code!
外部链接
在 n8n.io 查看 →
分享此工作流