8
n8n 한국어amn8n.com

FTP to Cloud 동기화

중급

이것은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 Drive에 업로드",
      "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)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수9
카테고리2
노드 유형5
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

저자
Avkash Kakdiya

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에서 보기

이 워크플로우 공유

카테고리

카테고리: 34