I use this command for sending large files over e-mail to people who have a limit. After splitting the file I always have to write a .bat file which merges the file again (since the others don't use 2xExplorer
e.g.: I want to send this file: largefile.zip
2xExplorer splits it into
largefile.zip.0
largefile.zip.1
largefile.zip.2
And now I want a .bat file :spin: : largefile.bat
@echo off
copy largefile.zip.0 /B + largefile.zip.1 /B + largefile.zip.2 /B largefile.zip

