FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   File Split Program (https://fileforums.com/showthread.php?t=96510)

Carldric Clement 09-12-2014 03:16

File Split Program
 
...

felice2011 09-12-2014 10:30

Interesting once split the file, which gets ?, the split files have no extension, part1, part2, etc...how do I join them again ???

Razor12911 09-12-2014 10:52

lol, true.

ChronoCross 09-12-2014 12:58

Quote:

Originally Posted by felice2011 (Post 436721)
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"


Carldric Clement 09-12-2014 18:00

File Split Update v1.1
 
Program Updated
V1.1

:rolleyes::cool:

felice2011 10-12-2014 01:44

Great job, almost perfect, tries to give even the choice of destination to save the file split....;)

Carldric Clement 10-12-2014 09:04

Quote:

Originally Posted by felice2011 (Post 436740)
Great job, almost perfect, tries to give even the choice of destination to save the file split....;)

Thanks bro.

Carldric Clement 14-12-2014 00:48

File Split Update v1.2
 
Program Updated
v1.2
:rolleyes::cool:

Razor12911 14-12-2014 12:23

Looks like an update is required for file split for optional split output. Will work on it.


All times are GMT -7. The time now is 07:21.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com