Skip to content

Zoho WorkDrive to OneDrive: Moving Your Team's Files into Microsoft 365 (2026)

Transfer files from Zoho WorkDrive to OneDrive three ways — manual export, rclone, and a server-side copy that moves Team Folder content into Microsoft 365.

Introduction

Teams usually move files from Zoho WorkDrive to OneDrive for one reason: the organisation has standardised on Microsoft 365, and OneDrive is where Word, Excel, Teams and SharePoint already expect files to live — with 1 TB per user on business plans and single files up to 250 GB. WorkDrive's model is different: storage is pooled per team (1 TB, 3 TB or 5 TB for 3–10 users on the Starter, Team and Business plans), and its native documents are Zoho Writer, Sheet and Show files that only become .docx, .xlsx and .pptx on export. That gap — pooled team storage and Zoho-format documents on one side, per-user Microsoft storage on the other — is what a migration has to bridge. This guide covers the manual export route, an rclone sync, and a server-side copy with CloudsLinker that skips the download/re-upload cycle.

What is Zoho WorkDrive?

Zoho WorkDrive is the file platform of the Zoho suite, built around shared Team Folders rather than personal drives. Storage is pooled: a team of 3–10 users gets 1 TB on the Starter plan, 3 TB on Team and 5 TB on Business, growing with each additional seat.

  • Team Folders with role-based access as the core unit
  • Per-file upload caps by plan: 10 GB / 50 GB / 250 GB
  • Native Zoho Writer, Sheet and Show documents; TrueSync desktop client
  • Storage pool expandable to 20–100 TB depending on plan
What is OneDrive?

OneDrive is Microsoft's cloud storage, allocated per user and wired into Microsoft 365: files open in Word and Excel in place, surface in Teams, and sync through the OneDrive client with Files On-Demand.

  • 1 TB per user on Microsoft 365 personal and standard business plans
  • Single files up to 250 GB
  • 5 GB free tier; 100 GB Basic at $1.99/month
  • Deep Microsoft 365 integration (Office, Teams, SharePoint)
Comparison: Zoho WorkDrive vs OneDrive
Feature Zoho WorkDrive OneDrive
Storage model Pooled per team: 1 TB (Starter), 3 TB (Team), 5 TB (Business) for 3–10 users; +100/300/500 GB per extra user Per user: 5 GB free, 100 GB Basic, 1 TB on Microsoft 365 Personal and standard business plans
Max single file 10 GB / 50 GB / 250 GB by plan 250 GB on current plans
Native documents Zoho Writer / Sheet / Show; export to .docx / .xlsx / .pptx on the way out Word / Excel / PowerPoint stored natively
Desktop sync TrueSync client OneDrive client with Files On-Demand, bundled with Windows
Ecosystem Zoho One suite (CRM, Mail, Projects) Microsoft 365 (Office apps, Teams, SharePoint)
Entry price beyond free Per-user team plans (Starter tier; annual billing) $1.99/month for 100 GB; $9.99/month for 1 TB with Office apps

Sources: Zoho WorkDrive pricing, Zoho WorkDrive upload limits, Microsoft OneDrive plans, OneDrive restrictions and limitations

Why Teams Move From Zoho WorkDrive to OneDrive

This migration is rarely about storage prices — it follows a platform decision. The common triggers:

  • Microsoft 365 standardisation: Once email, Teams and Office move to Microsoft, files left in WorkDrive sit outside every workflow the organisation now uses.
  • Per-user storage instead of a shared pool: A WorkDrive team shares 1–5 TB; Microsoft 365 gives each user their own 1 TB, which maps better to personal working files.
  • Documents in Office formats natively: Files stored as .docx and .xlsx from day one, with no export step when sharing outside the Zoho suite.
  • Windows integration: The OneDrive client ships with Windows and syncs with Files On-Demand — no separate TrueSync deployment to manage.
  • Leaving a partially-adopted suite: Teams that trialled Zoho One but committed to Microsoft consolidate to cut the second subscription.

The move has real friction — pooled Team Folders must land somewhere, and Zoho-native documents change format — so the method choice matters more than usual.

Preparing to Transfer from Zoho WorkDrive to OneDrive

Three checks before any files move:

1. Measure what you are moving. Open WorkDrive's admin storage view and note the real total. A Business team pooling several terabytes will not fit one OneDrive account's 1 TB — decide upfront what goes to which user's OneDrive and what belongs in a SharePoint document library instead.

2. Settle the Zoho-native documents. Writer, Sheet and Show files convert to .docx, .xlsx and .pptx when they leave WorkDrive. Finish active co-editing first, and treat the migration as the format cutover.

3. Freeze the source for the cutover. Announce a read-only window for the folders being moved. Files edited mid-transfer are the main source of "missing changes" complaints after a migration.

Method 1: Manual Export and Re-Upload

The zero-tooling route: pull the files out of WorkDrive through the browser, push them into OneDrive. Workable for one person's folders; painful for a team's.

Step 1: Download from Zoho WorkDrive

In the WorkDrive web app, open My Folders (or the Team Folder you are clearing), select the files or folders to export and choose Download from the selection toolbar. WorkDrive packages multi-item selections as zip archives, and Zoho-native documents are exported to Office formats inside the zip. Large selections are split across multiple archives, so download over a stable connection and check that every part arrives. Teams already running the TrueSync desktop client can instead let the folders sync to a local drive and skip the zip handling.

Zoho WorkDrive My Folders view with four files selected via checkboxes and the selection toolbar showing Copy link and Download options, with My Folders and Team Folders sections visible in the left sidebar

Step 2: Extract and Upload to OneDrive

Unzip the archives locally, reassemble the folder tree, and upload it to OneDrive — either by dragging folders into onedrive.com or by dropping them into the local OneDrive folder and letting the sync client push them. Watch two OneDrive rules while re-assembling: names cannot contain characters like " * : < > ? / \ |, and the full path is limited to 400 characters, which deeply nested WorkDrive trees can exceed.

The whole library crosses your connection twice — down, then up. For a few gigabytes that is an afternoon; for a pooled Team Folder it is days of open browser tabs, which is exactly what the next two methods remove.

Method 2: Rclone from the Command Line

Rclone, the open-source cloud sync tool, has backends for both Zoho WorkDrive and OneDrive, making it the scriptable route for admins comfortable in a terminal.

Step 1: Install Rclone and Configure Both Remotes

Download rclone from rclone.org and run rclone config twice: once creating a zoho remote (it opens a browser for Zoho's OAuth and asks for your region, then lists your Teams to pick from) and once creating an onedrive remote through Microsoft's OAuth. Both tokens are stored locally in the rclone config file.

Rclone official downloads page listing installer packages for Windows, macOS and Linux, the starting point for configuring the Zoho WorkDrive and OneDrive remotes

Step 2: Run the Copy and Verify

A single command moves a folder tree: rclone copy zoho:"Team Folder/Projects" onedrive:Projects --progress. Re-running it copies only what changed, and rclone check compares the two sides afterwards. The honest caveats: every byte still flows through the machine running rclone, so speed is bounded by that connection; the session must stay alive for the duration; and Zoho-native documents that have no binary form can fail to export this way — spot-check Writer-heavy folders and export those through the web app if needed.

Method 3: Server-Side Copy with CloudsLinker

Team Folders to OneDrive without the double transfer

CloudsLinker connects to WorkDrive through Zoho's region-aware OAuth — selecting your Team and Workspace after authorization, so pooled Team Folder content is reachable, not just personal files — and writes into OneDrive through Microsoft's API. The copy runs between the two clouds directly: a 500 GB Team Folder never touches your bandwidth, no session has to stay open, and the folder tree arrives in OneDrive as it stood in WorkDrive.

Step 1: Connect Zoho WorkDrive

Sign in at app.cloudslinker.com, click Add Cloud and choose Zoho WorkDrive. Select the region your Zoho account is hosted in (United States/Global, Europe, India, Japan, Australia or Canada — OAuth fails against the wrong region), then click Add Now Zoho WorkDrive and approve access on Zoho's own consent page. After authorization, pick the Team and, if you want to scope the connection down, a specific Workspace.

CloudsLinker Connect Your Zoho WorkDrive dialog over the Add Cloud provider grid, with region radio buttons for United States/Global, Europe, India, Japan, Australia and Canada and the Add Now Zoho WorkDrive authorization button

Step 2: Connect OneDrive

Click Add Cloud again and choose OneDrive (or OneDrive for Business for a Microsoft 365 work account). Microsoft's OAuth page handles the sign-in; if your account exposes several drive resources, select the one to use. CloudsLinker holds a revocable token — no Microsoft password is stored, and access can be cut from your Microsoft account's app permissions.

CloudsLinker Add Cloud page showing the OneDrive connection dialog ready to authorize through Microsoft's OAuth sign-in as the transfer destination

Step 3: Configure the Transfer

Open the Transfer section. Select the connected Zoho WorkDrive as the source and browse to the Team Folders or My Folders content to move. On the destination side, select OneDrive and choose the target directory.

Filters restrict a task by file type, size or date — useful for phased cutovers (archives first, active folders later). Copy mode leaves WorkDrive untouched; Move removes source files after a successful transfer. For a team migration, run Copy and keep WorkDrive as the fallback until verification is done.

CloudsLinker transfer setup page with the Zoho WorkDrive connection checked as the source in the left panel and a OneDrive account highlighted as the target on the right, with file filter, schedule and Copy mode options above the Transfer button

Step 4: Start and Monitor the Transfer

Start the task and follow it in the Task List — transferred size, speed, and per-file results. The job runs server-side between Zoho and Microsoft, so closing the browser or shutting the laptop changes nothing. Re-running the task after the read-only window picks up files added since the first pass.

CloudsLinker Task List view monitoring a running cloud-to-cloud transfer with progress, transferred size and speed displayed for the migration job

Comparing the Ways to Transfer From Zoho WorkDrive to OneDrive

Method Ease of Use Speed Best For Uses Local Bandwidth Skill Level
Manual export & upload Simple but tedious Slow — data crosses your line twice One user's folders, a few GB Yes, heavily Beginner
Rclone Terminal setup, two OAuth configs Bounded by the machine running it Scriptable, repeatable syncs by an admin Yes Advanced
CloudsLinker Web interface, OAuth both sides Server-side, independent of your connection Team Folders and large pooled libraries No Beginner
Practical Tips for Moving Zoho WorkDrive to OneDrive
  • Map Team Folders before moving anything. WorkDrive's pooled Team Folders have no direct OneDrive equivalent — decide per folder whether it becomes part of someone's OneDrive or a SharePoint document library, and write the mapping down. The migration executes the map; it cannot invent it.
  • Convert or finish Zoho-native documents first. Writer, Sheet and Show files export to .docx/.xlsx/.pptx on the way out. Close out live co-editing sessions, and spot-check converted files that used Zoho-specific features.
  • Check OneDrive naming rules against your tree. Characters like " * : < > ? / \ | in file names and paths beyond 400 characters fail on the Microsoft side. Deeply nested WorkDrive folders with long names are the usual offenders — flatten or rename before the run.
  • Do the storage arithmetic per destination account. A 3 TB Team pool does not fit a 1 TB OneDrive. Split by owner across user accounts, or target SharePoint for genuinely shared content.
  • Declare a read-only window for the cutover. Lock the WorkDrive folders being moved, run the transfer, verify, then point the team at OneDrive. Edits made mid-copy are how files go missing.
  • Verify counts, then re-share. Compare file counts and total size per folder after the run, and rebuild sharing in OneDrive/Teams — permissions never migrate between the two systems.

Frequently Asked Questions

Zoho-native documents exist in WorkDrive in Zoho's own formats. When they leave WorkDrive — by download or by server-side copy — they are exported to Office formats: Writer to .docx, Sheet to .xlsx, Show to .pptx. They open in Word and Excel afterwards, but live collaboration history and Zoho-specific features stay behind, so finish active co-editing before migrating.

Both. When CloudsLinker connects to WorkDrive it asks you to pick the Team and optionally a Workspace after OAuth, which exposes Team Folder content you have access to as well as My Folders. Moving another team's folders still requires you to be a member with adequate access — the connection sees what your account sees.

No. Files and the folder tree transfer; share links, member roles, comments and file activity history do not, because the two permission systems are unrelated. Plan to re-share from OneDrive or SharePoint after the move — for a team cutover this is usually the largest piece of manual work.

WorkDrive caps single files by plan: 10 GB on Starter, 50 GB on Team, 250 GB on Business. OneDrive accepts single files up to 250 GB on current personal and business plans. Anything that made it into WorkDrive therefore fits in OneDrive without splitting.

Through Zoho's OAuth flow. You pick the region your Zoho account lives in (Global, Europe, India, Japan, Australia or Canada), sign in on Zoho's own page, and approve access; CloudsLinker never sees your password. Revoking is done from Zoho's connected-apps settings at any time.

Check before starting: a WorkDrive Business team can pool 5 TB or more, while OneDrive allocates storage per user — 1 TB each on standard Microsoft 365 business plans, 5 GB on the free tier, 100 GB on the $1.99 Basic plan. A pooled archive usually needs to be split across user accounts or directed to a SharePoint document library. The transfer stops when the destination quota fills.

Yes. Select individual Team Folders or subfolders per task, or filter by file type or modification date — a common pattern is moving cold archives first, then cutting active folders over a weekend with WorkDrive set read-only. Re-running a task copies what is new since the last pass.

Conclusion

Match the method to the volume. A single user's My Folders with a few gigabytes fits the manual export-and-upload route, Zoho's zip quirks aside. An admin comfortable with a terminal can script the move with rclone, accepting that every byte flows through the machine running it. For Team Folders measured in hundreds of gigabytes — the pooled 1–5 TB that WorkDrive plans accumulate — the server-side copy is the practical route: OAuth on both sides, folder tree preserved, nothing routed through a local connection. Keep WorkDrive read-only until the file counts in OneDrive match.

Online Storage Services Supported by CloudsLinker

Transfer data between over 55 cloud services with CloudsLinker

OneDrive

OneDrive

Google Drive

Google Drive

Google Photos

Google Photos

Shared Drive

Shared Drive

OneDrive for Business

OneDrive for Business

Dropbox

Dropbox

Box

Box

Mega

Mega

pCloud

pCloud

Yandex

Yandex

ProtonDrive

ProtonDrive

AWS

AWS

GCS

GCS

iDrive

iDrive

Storj

Storj

DigitalOcean

DigitalOcean

Wasabi

Wasabi

1fichier

1fichier

PikPak

PikPak

TeleBox

TeleBox

OpenDrive

OpenDrive

Backblaze B2

Backblaze B2

Fastmail file

Fastmail file

SharePoint

SharePoint

Nextcloud

Nextcloud

ownCloud

ownCloud

Premiumize me

Premiumize me

HiDrive

HiDrive

Put.io

Put.io

Sugar Sync

Sugar Sync

Jottacloud

Jottacloud

Seafile

Seafile

Ftp

Ftp

SFtp

SFtp

NAS

NAS

WebDav

WebDav

4shared

4shared

Icedrive

Icedrive

Cloudflare R2

Cloudflare R2

Scaleway

Scaleway

Doi

Doi

iCloud Drive

iCloud Drive

iCloud Photos

iCloud Photos

FileLU

FileLU

Zoho WorkDrive

Zoho WorkDrive

Telia Cloud / Sky

Telia Cloud / Sky

Drime

Drime

Filen

Filen

TeraBox

TeraBox

Internxt

Internxt

Degoo

Degoo

Gofile

Gofile

Pixeldrain

Pixeldrain

Shade

Shade

Koofr

Koofr

Didn' t find your cloud service? Be free to contact: [email protected]

Further Reading

Effortless FTP connect to google drive: Transfer Files in 3 Easy Ways

Explore three efficient methods to connect Google Drive with FTP, enabling seamless file transfers. This comprehensive guide provides detailed instructions, benefits, and tips for effective file management.

Learn More >

Google Photos to OneDrive: 3 Innovative Transfer Strategies

Learn three effective methods to transfer your Google Photos to OneDrive. Explore Web-Based Transfers, Rclone, and CloudsLinker for an efficient shift.

Learn More >

Google Photos to Proton Drive: 3 Effective Transfer Techniques

Discover three practical methods to move your Google Photos to Proton Drive. Learn about Web-Based Uploading, Rclone, and CloudsLinker for a smooth transition.

Learn More >

Interested in learning more?