欢迎使用 FlowZap,快速、清晰、掌控的绘图应用。

File intake routing (Dropbox → Google Drive → Slack)

A Make.com automation scenario that watches a Dropbox folder for new file uploads, mirrors them to a Google Drive shared directory, and posts a Slack notification with the file details. This file routing workflow centralizes document storage across cloud providers and keeps the team informed of every new asset or deliverable.

完整 FlowZap 代码

dropbox { # Dropbox
n1: rectangle label:"Dropbox - Watch Files" system:"Dropbox"
n2: rectangle label:"Google Drive - Upload a File" system:"Google Drive"
n1.handle(right) -> n2.handle(left)
}

notify { # Notify
n3: rectangle label:"Slack - Create Message" system:"Slack"
n2.handle(bottom) -> notify.n3.handle(top) [label="File routed"]
}

相关模板

返回所有示例