Block 1 - Sticky Note
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
Google Drive to FTP Transfer Workflow Setup Guide Overview This n8n workflow automatically transfers files from Google Drive to an FTP server on a scheduled basis. It includes comprehensive logging...
n8n-nodes-base.stickynote, n8n-nodes-base.scheduletrigger, n8n-nodes-base.googledrive, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-base.ftp, n8n-nodes-base.if, n8n-nodes-base.writebinaryfile
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Dariusz Koryto.
Original n8n.io sourceThis n8n workflow automatically transfers files from Google Drive to an FTP server on a scheduled basis. It includes comprehensive logging, email notifications, and error handling.
Before setting up this workflow, ensure you have:
https://your-n8n-instance.com/rest/oauth2-credential/callback
your-google-drive-credentials-idyour-ftp-credentials-idConfigure SMTP settings for one of these providers:
your-email-credentials-idyour-google-drive-credentials-idyour-ftp-credentials-idyour-email-credentials-id{
"host": "your-ftp-server.com", // Replace with your FTP host
"username": "your-ftp-username", // Replace with your FTP username
"password": "your-ftp-password", // Replace with your FTP password
"path": "/remote/directory/{{ $json.validFiles[$json.batchIndex].name }}", // Update destination path
"port": 21 // Change if using different port
}
{
"sendTo": "[email protected]", // Replace with your email address
"subject": "Google Drive to FTP File Transfer - Report"
}
In the JavaScript code, update these settings:
const transferNotes = {
settings: {
maxFileSizeMB: 50, // Change maximum file size
allowedExtensions: [ // Add/remove allowed file types
'.pdf', '.doc', '.docx', '.txt',
'.jpg', '.png', '.zip', '.xlsx'
],
autoDeleteAfterTransfer: false, // Set to true to delete from Drive after transfer
verifyTransfer: true // Keep true for verification
}
};
{
"parents": {
"parentId": "your-notes-folder-id" // Replace with actual folder ID from Google Drive
}
}
In the "Schedule Trigger" node, adjust the interval:
{
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 6 // Change to desired interval (hours)
}
]
}
}
Alternative schedule options:
"field": "days", "daysInterval": 1"field": "weeks", "weeksInterval": 1The webhook trigger is available at:
POST https://your-n8n-instance.com/webhook/webhook-transfer-status
Use this for manual triggers or external integrations.
Google Drive Authentication Errors:
FTP Connection Failures:
Email Delivery Issues:
File Transfer Failures:
Enable debug mode by:
Add custom filtering logic in the "Filter & Validate Files" node:
// Example: Filter by modification date
const isRecentFile = new Date(file.modifiedTime) > new Date(Date.now() - 7 * 24 * 60 * 60 * 1000); // Last 7 days
// Example: Filter by folder location
const isInSpecificFolder = file.parents && file.parents.includes('specific-folder-id');
Customize the email report template in "Send Report Email" node:
<h2>📊 File Transfer Report</h2>
<div>
<h3>Summary</h3>
<ul>
<li><strong>Date:</strong> {{ new Date().toLocaleString('en-US') }}</li>
<li><strong>Success Rate:</strong> {{ Math.round((successfulTransfers / totalFiles) * 100) }}%</li>
</ul>
</div>
Add nodes to integrate with:
If you encounter issues:
Note: Replace all placeholder values (URLs, credentials, IDs) with your actual configuration before running the workflow.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Automated Google Drive to FTP transfer with JSON logging & reports |
|---|---|
| Complexity | advanced |
| Nodes | 15 |
| Categories | File Management |
| Author | Dariusz Koryto |
| Published | 30 Aug 2025 |
Use the JSON export at /data/workflows/8072/8072.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Google Drive to FTP Transfer Workflow Setup Guide Overview This n8n workflow automatically transfers files from Google Drive to an FTP server on a scheduled basis. It includes comprehensive logging...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your File Management use case.