View Single Post
  #3  
Old 09-12-2014, 12:58
ChronoCross's Avatar
ChronoCross ChronoCross is offline
Registered User
 
Join Date: Sep 2014
Location: Acacia Dragons
Posts: 254
Thanks: 145
Thanked 203 Times in 115 Posts
ChronoCross is on a distinguished road
Quote:
Originally Posted by felice2011 View Post
Interesting once split the file, which gets ?, the split files have no extension, part1, part2, etc...how do I join them again ???
The tool works fine for me.

example:
test file
dat_01.bin 9868 kb

split file to 3mb test

dat_01.part1 3072 kb
dat_01.part2 3072 kb
dat_01.part3 3072 kb
dat_01.part4 652 kb

then make a litle bat file to merge and delete all the "*.part*" files
Code:
@echo off 
title merge
for /r . %%T IN ("dat_0*.part1") do (
split m "%%T" "%%~nT.bin"
cls
)

del dat_0*.part*
Also here another bat file to split all dat_01.bin, dat_02.bin, etc. and draganddrop too.

Code:
@echo off
title Split
rem "Number 3 means 3mb"
for /r . %%T IN ("dat_0*.bin") do (
split s  "%%T" 3 "%%~nT.part*"

cls
)

del dat_0*.bin

Code:
rem drag and drop with 3mb split test small file
 split s "%~nx1" 3
 del  "%~nx1"
Reply With Quote
The Following 4 Users Say Thank You to ChronoCross For This Useful Post:
Carldric Clement (09-12-2014), Harsh ojha (30-07-2019), Razor12911 (09-12-2014), Sarvagya (28-12-2014)