split.exe
split
Code:
@echo off
title Split
rem "Number 3 means 3mb"
for /r . %%T IN ("dat_0*.bin") do (
split s "%%T" 50 "%%~nT.part*"
cls
)
del dat_0*.bin
rem --------------- drag and drop with
rem split s "%~nx1" 3
rem del "%~nx1"
merge
Code:
@echo off
title merge
for /r . %%T IN ("dat_0*.part1") do (
split m "%%T" "%%~nT.bin"
cls
)
del dat_0*.part*