FileSplitter is a 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.
Most users should install with the release patcher from the latest GitHub release:
- Fully close Discord.
- Download the patcher for your OS from the latest release:
- Windows:
FileSplitterPatcher.exe - Apple Silicon macOS:
FileSplitterPatcher-macos-arm64.zip
- Windows:
- Run the patcher.
- Choose
Installed EquicordorInstalled Vencord. - Click
Install / Update. - Reopen Discord and enable
FileSplitterin the plugin list if it is not already enabled.
If Discord is already running during install, restart it after the patcher finishes. The patcher creates a backup and includes restore/status actions.
- 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 Windows and Apple Silicon macOS release patchers 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 Windows and Apple Silicon macOS users who already use installed Equicord or Vencord.
Download: https://github.com/sioaeko/Vencord-splitLargeFile/releases/latest
Download the patcher for your OS and choose the mode that matches your setup.
For example, if the exe is in your Downloads folder:
cd "$env:USERPROFILE\Downloads"
.\FileSplitterPatcher.exeIf you cloned this repository and built the exe locally, use the dist path instead:
.\dist\FileSplitterPatcher.exeDownload FileSplitterPatcher-macos-arm64.zip, unzip it, then run:
cd ~/Downloads
chmod +x FileSplitterPatcher-macos-arm64
xattr -d com.apple.quarantine FileSplitterPatcher-macos-arm64 2>/dev/null || true
./FileSplitterPatcher-macos-arm64The macOS build is ad-hoc signed by the release workflow, but it is not notarized by Apple. If Gatekeeper blocks it, remove the quarantine attribute with the xattr command above and run it from Terminal.
Supported release-patcher targets:
- Installed Equicord
- Installed Vencord
- Source Repo (Vencord)
- Source Repo (Equicord)
- Fully close Discord.
- Run the release patcher for your OS from the folder where it was downloaded.
- Choose
Installed EquicordorInstalled Vencord. - Click
Install / Update. - Start Discord again.
- Enable
FileSplitterin the plugin list if your client requires it.
The patcher stores a backup next to your client files. Use Restore in the GUI, or node patcher.js --restore / node patcher.js --restore-vencord, to undo the patch.
- Run the release patcher for your OS.
- 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 and prefer a normal src/userplugins install instead of patching an installed client.
The PR-ready plugin source lives in:
src/equicordplugins/fileSplitter/
For personal installs, copy those files into src/userplugins/fileSplitter/.
For an Equicord PR, copy the folder into src/equicordplugins/fileSplitter/, add yourself to EquicordDevs, and target Equicord's dev branch.
- 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/src/equicordplugins/fileSplitter/index.tsx curl -o src/userplugins/fileSplitter/native.ts https://raw.githubusercontent.com/sioaeko/Vencord-splitLargeFile/main/src/equicordplugins/fileSplitter/native.ts curl -o src/userplugins/fileSplitter/styles.css https://raw.githubusercontent.com/sioaeko/Vencord-splitLargeFile/main/src/equicordplugins/fileSplitter/styles.css
- 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/src/equicordplugins/fileSplitter/index.tsx curl -o src/userplugins/fileSplitter/native.ts https://raw.githubusercontent.com/sioaeko/Vencord-splitLargeFile/main/src/equicordplugins/fileSplitter/native.ts curl -o src/userplugins/fileSplitter/styles.css https://raw.githubusercontent.com/sioaeko/Vencord-splitLargeFile/main/src/equicordplugins/fileSplitter/styles.css
- Build and inject:
pnpm install pnpm build pnpm inject
Use this if you cloned this repository and want to install, restore, or check status from the command line.
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\VencordCommand meaning:
--install: patch installed Equicord--restore: restore installed Equicord from backup--status: check installed Equicord patch status--install-vencord: patch installed Vencord--restore-vencord: restore installed Vencord from backup--status-vencord: check installed Vencord patch status--install-source --repo <path>: copy the source plugin intosrc/userplugins/fileSplitter
For a release binary, the same commands work after replacing node patcher.js with the downloaded file path:
cd "$env:USERPROFILE\Downloads"
.\FileSplitterPatcher.exe --install
.\FileSplitterPatcher.exe --install-vencord
# Or, from this repository after building:
.\dist\FileSplitterPatcher.exe --installFor the Apple Silicon macOS release binary:
cd ~/Downloads
./FileSplitterPatcher-macos-arm64 --install
./FileSplitterPatcher-macos-arm64 --install-vencordBuild release binaries from this repo:
npm run build:exe
npm run build:mac-arm64
# On macOS, sign the Apple Silicon binary:
npm run build:mac-arm64:signed- 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 Windows and Apple Silicon macOS release patchers |
| Installed Vencord | Yes | Supported by the Windows and Apple Silicon macOS release patchers |
| Vencord source repo | Yes | Supported by the release patchers and manual install |
| Equicord source repo | Yes | Supported by the release patchers 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 on Windows or FileSplitterPatcher-macos-arm64 on Apple Silicon macOS 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





