FileSplitter is a Vencord/Equicord plugin that works around Discord's upload limit by splitting large files into 10MB parts on upload, then rebuilding them on the receiving side inside the client.
The project now supports both source-based installs and a release patcher for already-installed clients, so users who do not want to clone/build a repo can still use the full plugin.
- Adds a Split & Upload button to the chat bar
- Splits files larger than 10MB into numbered chunk uploads
- Re-detects chunk messages automatically when messages load or channels change
- Rebuilds the original file locally when all parts are available
- Shows a merged download card for non-image files
- Shows a merged inline preview card for image files
- Keeps the original filename for downloads
- Avoids the old forced auto-download flow for rebuilt files
- Supports installed Equicord, installed Vencord, and source repo installs
- Includes a Windows release patcher with backup/restore/status flows
- Files at or below 10MB are left alone and can be sent normally
- Files above 10MB are split into
part001,part002,part003, and so on - Each chunk is uploaded through Discord's normal upload pipeline
- Chunk metadata is sent as JSON message content so the receiving client can reassemble the file
- Upload progress is shown through live toast notifications
- The plugin currently enforces a 500MB per-file soft limit in the UI
- Existing messages are scanned when the plugin starts
- Existing messages are scanned again when a channel is selected
- Message create and message update events are listened to in real time
- Once every chunk for a file is present, the plugin marks the set as mergeable
- Image files get a rebuilt inline preview card
- Non-image files get a rebuilt download card with a file icon
- Downloads happen only when the user clicks Download
- Original chunk rows are hidden once a merged result card is available
- Image results show a large preview and a bottom action row
- Non-image results show a file-type icon, filename, subtitle, and download button
- Result cards are styled to remain readable on the default Discord dark theme
- Failed rebuilds show an error state with a retry action
- Can patch Installed Equicord
- Can patch Installed Vencord
- Can copy the plugin into a Vencord source repo
- Can copy the plugin into an Equicord source repo
- Creates backups for installed-client patching
- Supports restore and status checks from CLI and GUI modes
There are three supported ways to use FileSplitter.
Recommended for most users on Windows.
Release: https://github.com/sioaeko/Vencord-splitLargeFile/releases
Download FileSplitterPatcher.exe and choose the mode that matches your setup.
Supported release-patcher targets:
- Installed Equicord
- Installed Vencord
- Source Repo (Vencord)
- Source Repo (Equicord)
- Fully close Discord.
- Run
FileSplitterPatcher.exe. - Choose
Installed EquicordorInstalled Vencord. - Click
Install / Update. - Start Discord again.
- Enable
FileSplitterin the plugin list if your client requires it.
- Run
FileSplitterPatcher.exe. - Choose
Source Repo (Vencord)orSource Repo (Equicord). - Select your local repo root.
- Build/inject your client again.
Use this if you already maintain a local Vencord/Equicord source checkout.
- Clone the Vencord source:
git clone https://github.com/Vendicated/Vencord.git cd Vencord - Create the userplugin folder:
mkdir -p src/userplugins/fileSplitter
- Copy the plugin files:
curl -o src/userplugins/fileSplitter/index.tsx https://raw.githubusercontent.com/sioaeko/Vencord-splitLargeFile/main/FileSplitter.tsx curl -o src/userplugins/fileSplitter/native.ts https://raw.githubusercontent.com/sioaeko/Vencord-splitLargeFile/main/native.ts
- Build and inject:
pnpm install pnpm build pnpm inject
- Clone the Equicord source:
git clone https://github.com/Equicord/Equicord.git cd Equicord - Create the userplugin folder:
mkdir -p src/userplugins/fileSplitter
- Copy the plugin files:
curl -o src/userplugins/fileSplitter/index.tsx https://raw.githubusercontent.com/sioaeko/Vencord-splitLargeFile/main/FileSplitter.tsx curl -o src/userplugins/fileSplitter/native.ts https://raw.githubusercontent.com/sioaeko/Vencord-splitLargeFile/main/native.ts
- Build and inject:
pnpm install pnpm build pnpm inject
If you want to work directly from the repository:
npm install
node patcher.js --helpExamples:
node patcher.js --install
node patcher.js --restore
node patcher.js --status
node patcher.js --install-vencord
node patcher.js --restore-vencord
node patcher.js --status-vencord
node patcher.js --install-source --repo C:\path\to\Vencord- Click the FileSplitter button in the chat bar.
- Pick a file larger than 10MB.
- The plugin splits it into numbered chunk uploads.
- Each chunk is uploaded like a normal Discord attachment.
- A small metadata message is posted for each chunk set.
- The client finds chunk metadata messages.
- It tracks all parts for the same original file.
- After every part is available, it fetches those attachments locally.
- It rebuilds the original file in memory.
- It renders either:
- an inline image preview card, or
- a non-image file download card.
The files are still usable manually. You can download the .part001, .part002, .part003, and later pieces, then join them yourself in order.
copy /b "filename.part001" + "filename.part002" + "filename.part003" "originalfile"Get-Content "filename.part001","filename.part002","filename.part003" -Encoding Byte -ReadCount 0 | Set-Content "originalfile" -Encoding Bytecat filename.part001 filename.part002 filename.part003 > originalfile| Target | Supported | Notes |
|---|---|---|
| Installed Equicord | Yes | Supported by the release patcher |
| Installed Vencord | Yes | Supported by the release patcher |
| Vencord source repo | Yes | Supported by the release patcher and manual install |
| Equicord source repo | Yes | Supported by the release patcher and manual install |
| Plain Discord without Vencord/Equicord | No | The patcher does not install a mod client by itself |
| Item | Description |
|---|---|
| Chunk Size | 10MB |
| Max UI-enforced file size | 500MB |
| File Formats | All file types |
| Image Preview Types | Common inline image formats |
| Metadata Transport | JSON in message content |
| Upload Path | Discord upload pipeline through CloudUploader + RestAPI |
| Rebuild Path | Local fetch + Blob reconstruction |
| Chunk Expiry | 30 minutes |
| Part Naming | filename.part001, filename.part002, ... |
Q: I cannot build the plugin from source
A: Use the release patcher instead. FileSplitterPatcher.exe is intended specifically for users who do not want to deal with source builds or repo layout changes.
Q: The plugin does not show up after patching A: Fully close Discord, patch the correct target, then restart Discord. If you are using a source repo, rebuild/inject again after copying the plugin.
Q: Installed patching failed
A: Make sure you selected the correct installed target: Installed Equicord and Installed Vencord are separate modes.
Q: Auto-merge is not happening A: All chunks must be available in the same channel, and the receiving client must have FileSplitter installed and active.
Q: Why does a user without the plugin not see the rebuilt preview card? A: The rebuilt result card is local client-side UI. Users without the plugin only see the uploaded chunk files and can still merge them manually.
Q: Can this patch plain Discord directly? A: No. The patcher targets Vencord/Equicord installs or source repos. It does not install a custom client on top of plain Discord by itself.
- File reconstruction is done locally on the receiving client
- No external merge server is used
- Files are transferred only through Discord's own attachment/CDN flow
- Installed patching creates a local backup before modifying client files
- Author: sioaeko
- Original concept: ImTheSquid/SplitLargeFiles
MIT License





