FTPでクラウド同期
中級
これはContent Creation, Multimodal AI分野の自動化ワークフローで、9個のノードを含みます。主にFtp, GoogleDrive, SplitInBatches, ScheduleTriggerなどのノードを使用。 FTPからGoogle Driveへのファイル転送、バッチ処理とスケジューリング対応
前提条件
- •Google Drive API認証情報
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"meta": {
"templateCredsSetupCompleted": false
},
"name": "FTP to Cloud Sync",
"nodes": [
{
"id": "262d1e91-d950-41a4-8a27-afeb44c9744d",
"name": "⏯️ スケジュールトリガー",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-144,
64
],
"parameters": {
"rule": {
"interval": [
{}
]
}
},
"typeVersion": 1.2
},
{
"id": "44decf50-8cb4-4eba-bd60-67f963e1d939",
"name": "📂 FTPからファイル一覧取得",
"type": "n8n-nodes-base.ftp",
"position": [
80,
64
],
"parameters": {
"path": "/path/to/your/files",
"operation": "list"
},
"credentials": {
"ftp": "ftp_credentials"
},
"typeVersion": 1
},
{
"id": "821ff817-5e79-4d81-8fc5-980c76517d87",
"name": "🔀 ファイルバッチ処理",
"type": "n8n-nodes-base.splitInBatches",
"position": [
304,
64
],
"parameters": {
"options": {}
},
"typeVersion": 3
},
{
"id": "7535c279-523e-4d07-bc8d-de3424456236",
"name": "⬇️ FTPからファイルダウンロード",
"type": "n8n-nodes-base.ftp",
"position": [
528,
-16
],
"parameters": {
"path": "={{ $json.name }}",
"options": {}
},
"credentials": {
"ftp": "ftp_credentials"
},
"typeVersion": 1
},
{
"id": "b6f0df47-0de0-4636-8939-1fbe748da310",
"name": "☁️ Google ドライブにアップロード",
"type": "n8n-nodes-base.googleDrive",
"position": [
752,
64
],
"parameters": {
"name": "={{ $json.name }}",
"driveId": {
"__rl": true,
"mode": "list",
"value": "My Drive"
},
"options": {},
"folderId": {
"__rl": true,
"mode": "list",
"value": "root",
"cachedResultName": "/ (Root folder)"
}
},
"credentials": {
"googleDriveOAuth2Api": "google_drive_credentials"
},
"typeVersion": 3
},
{
"id": "a62179dc-9d84-42b9-953b-0d584763b1bc",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
-208,
-272
],
"parameters": {
"color": 4,
"width": 448,
"height": 544,
"content": "## 1. Trigger & File Listing\n\n*The workflow starts automatically using a Schedule trigger.\n\nIt connects to the FTP server and retrieves a list of files from the given remote folder path.*"
},
"typeVersion": 1
},
{
"id": "1cdca185-0cc4-4a2d-97cd-7a467d4df82b",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
256,
-272
],
"parameters": {
"color": 3,
"width": 208,
"height": 544,
"content": "## 2. Batch Processing Setup\n\n*Files are split into manageable batches so each file is handled one at a time.\n\nThis avoids overloading the system and ensures smooth sequential processing.*"
},
"typeVersion": 1
},
{
"id": "333bf0b6-aeb7-422a-83ae-e2fa5d448814",
"name": "付箋2",
"type": "n8n-nodes-base.stickyNote",
"position": [
480,
-272
],
"parameters": {
"color": 5,
"height": 544,
"content": "## 3. File Handling\n\n*Each batch item (file) is downloaded from the FTP server.\n\nThe downloaded file is prepared for the next step (upload).*"
},
"typeVersion": 1
},
{
"id": "58997636-96c2-4f25-9795-3f8fbc83d293",
"name": "付箋3",
"type": "n8n-nodes-base.stickyNote",
"position": [
736,
-272
],
"parameters": {
"width": 192,
"height": 544,
"content": "## 4. Cloud Upload\n\n*Files are uploaded to Google Drive.\n\nThe filename from FTP is retained during upload for consistency.*"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"connections": {
"821ff817-5e79-4d81-8fc5-980c76517d87": {
"main": [
[],
[
{
"node": "7535c279-523e-4d07-bc8d-de3424456236",
"type": "main",
"index": 0
}
]
]
},
"262d1e91-d950-41a4-8a27-afeb44c9744d": {
"main": [
[
{
"node": "44decf50-8cb4-4eba-bd60-67f963e1d939",
"type": "main",
"index": 0
}
]
]
},
"44decf50-8cb4-4eba-bd60-67f963e1d939": {
"main": [
[
{
"node": "821ff817-5e79-4d81-8fc5-980c76517d87",
"type": "main",
"index": 0
}
]
]
},
"b6f0df47-0de0-4636-8939-1fbe748da310": {
"main": [
[
{
"node": "821ff817-5e79-4d81-8fc5-980c76517d87",
"type": "main",
"index": 0
}
]
]
},
"7535c279-523e-4d07-bc8d-de3424456236": {
"main": [
[
{
"node": "b6f0df47-0de0-4636-8939-1fbe748da310",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - コンテンツ作成, マルチモーダルAI
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
FTPからクラウド同期
バッチ処理を使って FTP ファイルを Google Drive に自動転送する
Ftp
Google Drive
Split In Batches
+
Ftp
Google Drive
Split In Batches
9 ノードAvkash Kakdiya
コンテンツ作成
AI 製品画像ジェネレーター - 公開テンプレート
OpenAI・Gemini・Google Workspace を使用した自動製品広告画像の作成
Code
Google Drive
Http Request
+
Code
Google Drive
Http Request
15 ノードAvkash Kakdiya
コンテンツ作成
AI駆動型WordPressコンテンツワーキングフロー
OpenAIのGPTを使ってPostgreSQLからWordPressへのブログ投稿を自動化
If
Code
Postgres
+
If
Code
Postgres
12 ノードAvkash Kakdiya
コンテンツ作成
クールドル仕様での取引成立〜クローズワークフロー
GmailフィードバックとSlack通知に基づくHubSpotクールリード取引の自動クローズ
Code
Gmail
Slack
+
Code
Gmail
Slack
15 ノードAvkash Kakdiya
コンテンツ作成
データ統合のインテグレーション
5つのデータソースを統合し、SQL・MongoDB・Googleツールを使って自動レポートを生成
Merge
Mongo Db
Function
+
Merge
Mongo Db
Function
17 ノードAvkash Kakdiya
コンテンツ作成
08 - AIビデオ生成
OpenAI、Veo 3、Gmailを使用して任意のテーマの短い動画を作成
If
Wait
Gmail
+
If
Wait
Gmail
14 ノードAvkash Kakdiya
コンテンツ作成
ワークフロー情報
難易度
中級
ノード数9
カテゴリー2
ノードタイプ5
作成者
Avkash Kakdiya
@itechnotion🚀 Founder of iTechNotion — we build custom AI-powered automation workflows for startups, agencies, and founders. 💡 Specializing in agentic AI systems, content automation, sales funnels, and digital workers. 🔧 14+ years in tech | Building scalable no-code/low-code solutions using n8n, OpenAI, and other API-first tools. 📬 Let’s automate what slows you down.
外部リンク
n8n.ioで表示 →
このワークフローを共有