File & Document Management Automation Workflows — Page 30 | Neura Market
    Neura Market
    Neura Market
    /Categories
    Marketplace
    Directories
    Resources
    Home/Categories/File & Document Management

    File & Document Management Workflows

    Document processing and management

    • Automate Scenario Blueprint Creation and File Upload to Google Drive

      Efficiently generate scenario blueprints and seamlessly upload them to Google Drive, enhancing your workflow automation with Make and Google Drive.

      MakeFree
    • Automatically Add Signatures to PDFs Using PDF.co and Google Drive

      Seamlessly integrate your signature image into PDF documents stored in Google Drive using PDF.co's robust API.

      MakeFree
    • Automate Slack File Monitoring and Google Drive Uploads

      Seamlessly monitor new files in Slack and automatically upload them to Google Drive, ensuring secure and organized document storage.

      MakeFree

    Marketplace

    • Prompts
    • Workflows
    • Agents Store
    • Workflow Packs
    • Categories
    • Marketplace

    Directories

    • AI Tools Directory
    • ChatGPT
    • Claude
    • Gemini
    • Cursor
    • Grok
    • DeepSeek
    • Perplexity
    • CoPilot
    • Midjourney
    • Stable Diffusion
    • MCP Servers
    • .md Directory
    • All Directories

    Free Tools

    • AI Text Humanizer
    • AI Content Detector
    • Workflow Generator
    • Model Comparison
    • AI Pricing Calculator
    • AI Benchmarks
    • ROI Calculator
    • All Free Tools

    Resources

    • AI News
    • Blog
    • AI Models
    • Integrations
    • Alternatives
    • n8n vs Zapier
    • Make vs Zapier
    • n8n vs Make
    • Resource Library
    • Documentation

    Community

    • AI Jobs
    • AI Events
    • AI Companies
    • Start Selling
    • Sell n8n Workflows
    • Sell AI Agents
    • Sell Prompts
    • Creator Guide
    • Advertise
    • Affiliates

    Company

    • About
    • Contact
    • Help
    • Careers
    • Pricing
    • Terms
    • Privacy
    • License
    • DMCA

    Stay Updated

    Get the latest AI tools and insights delivered to your inbox.

    Neura Market Logoneuramarket

    © 2026 Neura Market. All rights reserved.

  1. Automate File Conversion and Upload in OneDrive with Aspose

    Automatically convert files from a specified OneDrive folder using Aspose and upload the converted files back to OneDrive.

    MakeFree
  2. Automatically Duplicate Outline Documents in Zoho Writer

    This workflow in Make triggers whenever a new document is added to Outline, then automatically creates an identical copy in Zoho Writer. It saves writers and project managers from manually duplicating documents, ensuring consistent formatting and structure across platforms. Ideal for teams that maintain parallel outlines or templates.

    MakeFree
  3. Automate Logo Replacement in Google Docs for Rebranding

    Effortlessly update your Google Docs with new branding by replacing existing logos with a new image URL.

    MakeFree
  4. Secure New PDF Files in OneDrive with Password Protection

    Automatically secure new PDF files in OneDrive by adding password protection and disabling certain permissions, then save the protected copy to a specified folder.

    MakeFree
  5. Automate Document Creation and Signing with Box and Scrive

    Automatically create and initiate the signing process for documents in Scrive whenever a new file is added to a specified Box folder.

    MakeFree
  6. Automate File Conversion and Upload with pCloud and CloudConvert

    Automatically convert files from pCloud to a specified format using CloudConvert and upload the converted files back to pCloud.

    MakeFree
  7. Automate Document Creation from Google Forms with Plumsail

    Streamline your document generation process by automatically creating DOCX and PDF files from Google Forms submissions using Plumsail Documents. Store the generated files in Google Drive for easy access.

    MakeFree
  8. Automate File Transfers from Google Drive to Seliom

    Automatically transfer files from a specified Google Drive folder to Seliom every 15 minutes, ensuring seamless file management.

    MakeFree
  9. Automate Invoice Data Extraction with QuickBooks and Koncile OCR

    Streamline your workflow by automatically extracting key data from QuickBooks invoices using Koncile OCR, enabling seamless data reconciliation and export.

    MakeFree
  10. Automatically Create PDF Documents from New Google Sheets Entries

    This workflow generates a PDF document in PDFMonkey every time a new row is added to a specified Google Sheets spreadsheet, streamlining document creation.

    MakeFree
  11. Respond with File Download to Incoming HTTP Request

    This simple workflow demonstrates how to get an end user's browser to download a file. It makes use of the [Content-Disposition](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Disposition) header to set a filename and control the browser behavior. ![image.png](fileId:709) A use case could be the download of a PDF file at the end of an application process or to export data from a database without replacing the current page content in the browser. With this approach, the current page remains open and the file is simply downloaded instead: ![image.png](fileId:710) The original idea was first presented [here](https://community.n8n.io/t/webhook-to-excel-file/11059/24?u=mutedjam) by @dickhoning in the n8n community.

    n8nFree
  12. Automate CloudConvert Job Creation and File Management

    This workflow automates the creation of jobs in CloudConvert, manages export tasks, and downloads files to Google Drive. Notifications are sent to Google Chrome to keep you updated on job statuses.

    MakeFree
  13. Automate OVH Invoice Management with Google Sheets and Drive

    Streamline your OVH invoice management by automatically syncing invoices to Google Sheets and saving PDFs to Google Drive. This workflow eliminates the need to manually download invoices, saving you time and effort.

    n8nFree
  14. Automate Typeform Data Entry into NextCloud Spreadsheet

    Automatically append new Typeform submissions to a NextCloud-hosted spreadsheet, ensuring seamless data integration and management.

    n8nFree
  15. Automate Document Creation and Emailing from Airtable Records

    Automatically generate a document from a Google Docs template using data from new Airtable records, convert it to PDF, and send it via Gmail.

    MakeFree
  16. Automatically Create Google Drive Folders from New Google Forms Responses

    Streamline your workflow by automatically creating a new folder in Google Drive each time a new response is submitted via Google Forms.

    MakeFree
  17. Automate Audio Transcription from Google Drive with OpenAI Whisper and Email Delivery

    Streamline the transcription of audio files stored in Google Drive using OpenAI Whisper. Convert files to compatible formats, transcribe them, store the results in Google Docs, and automatically email the document for seamless communication.

    MakeFree
  18. Simple File-Based Key-Value Store (WriteKey)

    Store a key with a value in a local JSON file. Multiple keys could be saved in a single file. Related workflow: [GetKey](https://n8n.io/workflows/1408) Create a subfolder in your n8n home directory: `/home/node/.n8n/local-files`. In Docker, look at the data path and create a subfolder `local-files`. Set the correct access rights with `chmod 1000:1000 local-files`. Put the workflow code in a new workflow named `WriteKey`. Create another workflow with a `function item`: ```js return { file: "/4711.json", // 4711 should be your workflow id key: "MyKey", value: "MyValue" } ``` Pipe the `function item` to an `Execution Workflow` that calls the `WriteKey` workflow. It would be nice if we could get someday a shiny built-in n8n node that does the job. :)

    n8nFree
  19. Google Drive Duplicate File Manager

    # Google Drive Duplicate File Manager **Purpose:** Automate the process of finding and managing duplicate files in your Google Drive. **Who's it for?** - Individuals and teams aiming to streamline their Google Drive. - Anyone tired of manual duplicate file cleanup. **What it Solves:** - Saves storage space. - Reduces file confusion. - Automates tedious cleanup tasks. **How it works:** 1. **Trigger:** Monitors a Google Drive folder for new files. 2. **Configuration:** Sets rules for keeping and handling duplicates. 3. **Find Duplicates:** Identifies duplicate files based on their content (MD5 Checksum). 4. **Action:** Either moves duplicates to trash or renames them. **Setup Guide:** 1. **Google Drive Trigger:** - Set up the trigger to watch a specific folder or your entire drive (use caution with the root folder!). - Configure the polling interval (default: every 15 minutes). 2. **Config Node:** - **keep:** Choose whether to keep the first or last uploaded file (default: last). - **action:** Select trash to delete duplicates or flag to rename them with DUPLICATE- (default: flag). - **owner & folder:** Taken from the trigger. Only change if needed. **Key Considerations:** - **Google Drive API limits:** Be mindful of API usage. - **Folder Scope:** The workflow handles one folder depth by default. (WARNING: If configured to work with the Root folder / all files in all sub-directories are processed so **USE THIS OPTION WITH CAUTION** since the workflow might trash/rename important files) - **Google Apps:** Google docs are ignored since they are not actual binary files and their content can't be compared. **Enjoy your clean Google Drive!**

    n8nFree
  20. Automatically Archive Pushbullet Messages to Evernote

    Effortlessly save your Pushbullet messages as notes in Evernote, ensuring you never lose important information.

    MakeFree
  21. Automate Document Creation and Email Delivery with Plumsail and Gmail

    Automatically generate Excel and PDF documents using Plumsail templates stored in Google Drive and send them via Gmail.

    MakeFree
  22. ← PreviousPage 30 of 34Next →

    Related categories

    Communication (2,463)AI (1,929)Business Operations & ERPs (1,540)Other (1,425)Productivity (1,202)Marketing (1,145)Data & Analytics (995)CRM - Sales (604)Notifications (580)Social Media (562)

    Need a custom file & document management workflow?

    Our automation experts build tailored workflows for your exact stack and process.

    Request a Custom Workflow