|
#1
|
||||
|
||||
|
File Split Program
...
Last edited by Carldric Clement; 21-04-2019 at 08:31. |
| The Following 5 Users Say Thank You to Carldric Clement For This Useful Post: | ||
Andrey167 (09-12-2014), ChronoCross (10-12-2014), Galford (14-12-2014), Razor12911 (09-12-2014), Simorq (02-05-2015) | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
Interesting once split the file, which gets ?, the split files have no extension, part1, part2, etc...how do I join them again ???
|
| The Following User Says Thank You to felice2011 For This Useful Post: | ||
Carldric Clement (09-12-2014) | ||
|
#3
|
||||
|
||||
|
lol, true.
|
| The Following 2 Users Say Thank You to Razor12911 For This Useful Post: | ||
Carldric Clement (09-12-2014), Sarvagya (28-12-2014) | ||
|
#4
|
||||
|
||||
|
Quote:
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*
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" |
| 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) | ||
|
#5
|
||||
|
||||
|
Program Updated V1.1 ![]()
|
| The Following 3 Users Say Thank You to Carldric Clement For This Useful Post: | ||
|
#6
|
||||
|
||||
|
Great job, almost perfect, tries to give even the choice of destination to save the file split....
|
| The Following User Says Thank You to felice2011 For This Useful Post: | ||
Carldric Clement (10-12-2014) | ||
|
#7
|
||||
|
||||
|
Thanks bro.
|
|
#8
|
||||
|
||||
|
Program Updated v1.2 ![]()
Last edited by Carldric Clement; 14-12-2014 at 00:50. |
| The Following User Says Thank You to Carldric Clement For This Useful Post: | ||
Sarvagya (28-12-2014) | ||
|
#9
|
||||
|
||||
|
Looks like an update is required for file split for optional split output. Will work on it.
|
| The Following 2 Users Say Thank You to Razor12911 For This Useful Post: | ||
Carldric Clement (14-12-2014), Sarvagya (28-12-2014) | ||
![]() |
| Tags |
| compression, files, merge, split |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Supreme Commander (DVD9 to DVD5) | Grumpy | PC Games - CD/DVD Conversions | 12 | 04-08-2013 14:02 |
| BF2 1.4 Crack Online Issue | glenbo | PC Games | 58 | 31-07-2008 19:43 |
| weird error.... | sheykh | PC Games | 5 | 07-05-2006 20:23 |
| Have Problems With Burning Please Help!!!!!!!!!!!!!!!! | dblue | CD/DVD Software & Utilities | 1 | 15-09-2004 17:08 |
| The Ultimate XBox Newbie Guide | rms2001 | XBox Games | 5 | 15-08-2003 00:58 |