#1
|
||||
|
||||
File Splitter
This programs allows you to split files via command line into equal parts
and merge them whenever you want. Usage "Program" "command" "Original file" "File split in mb" Split.exe s C:\File.ext 12 "Program" "command" "Split-ed file/First Split" "Original File" Split.exe m C:\File.part1 C:\File.ext |
The Following 14 Users Say Thank You to Razor12911 For This Useful Post: | ||
78372 (20-05-2017), Andrey167 (02-12-2014), Carldric Clement (01-12-2014), Cesar82 (06-06-2017), ChronoCross (01-12-2014), GaMEr_2077 (19-05-2021), Harsh ojha (30-07-2019), houcine80 (07-06-2017), hydefromt70s (01-12-2014), JRD! (26-04-2017), Lucas65 (08-04-2016), pakrat2k2 (01-12-2014), Simorq (02-05-2015), Stor31 (18-09-2017) |
Sponsored Links |
#2
|
||||
|
||||
Inno Setup Usage
function Splitter(OriginalFile: String; SplitSize: Integer):Boolean; var ResultCode: Integer; begin if FileExists(ExpandConstant('{tmp}\Split.exe')) = False then ExtractTemporaryFile('Split.exe'); Result:=Exec(ExpandConstant('{tmp}\Split.exe'), 's "' + ExpandConstant(OriginalFile) + '" "' + IntToStr(SplitSize) + '"', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); end; function Merger(SplitFile, OriginalFile: String):Boolean; var ResultCode: Integer; begin if FileExists(ExpandConstant('{tmp}\Split.exe')) = False then ExtractTemporaryFile('Split.exe'); Result:=Exec(ExpandConstant('{tmp}\Split.exe'), 'm "' + ExpandConstant(SplitFile) + '" "' + ExpandConstant(OriginalFile) + '"', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); end; |
The Following 3 Users Say Thank You to Razor12911 For This Useful Post: | ||
#3
|
||||
|
||||
Does not work for me. I see a bit of a second a Window what closed automatic.
|
#4
|
||||
|
||||
show me your commandline
|
#5
|
||||
|
||||
There is no Commandline. I click the Split.exe, see a Window popping up and close. Nothing more...
|
#6
|
||||
|
||||
lol, it is a console app. you must command the program for it to work via CMD
here is an example Split.exe s C:\File.ext 1024 |
The Following User Says Thank You to Razor12911 For This Useful Post: | ||
ChronoCross (01-12-2014) |
#7
|
||||
|
||||
Ok. Now I know, but don't get it to work. If you make the App a bit more easy to use I will check it out again.
|
#8
|
||||
|
||||
Quote:
after was copy in this function, how to extract it? |
#9
|
||||
|
||||
how i can integrate split.exe + CIUV2 by yener script
|
The Following User Says Thank You to gatosky1620 For This Useful Post: | ||
Razor12911 (01-12-2014) |
#10
|
||||
|
||||
thanks Razor12911
very usefull tool i want "Freearc Tactical Splitter (Filelist)" in console app too. |
The Following User Says Thank You to ChronoCross For This Useful Post: | ||
Razor12911 (01-12-2014) |
#11
|
||||
|
||||
@Carl
You must first include the exe under files section first. Example Splitter(ExpandConstant('{app}\file.ext),1024); Merger(ExpandConstant('{app}\file.part1),ExpandCon stant('{app}\file.ext)); @gatosky I am working on the scripts right now bro. @ChronoCross I will see. |
The Following 2 Users Say Thank You to Razor12911 For This Useful Post: | ||
Carldric Clement (02-12-2014), ChronoCross (02-12-2014) |
#12
|
||||
|
||||
Quote:
Quote:
|
The Following User Says Thank You to Carldric Clement For This Useful Post: | ||
Simorq (11-11-2016) |
#13
|
||||
|
||||
Yep.
|
#14
|
||||
|
||||
Quote:
Like Skip. Last edited by Carldric Clement; 03-12-2014 at 05:44. Reason: Problem Extract Part. |
#15
|
||||
|
||||
It is done, I'll just need a translated message for this:
Merging=Merging %1... (This might take a while) The only problem is that it is not tested because I edited the script via notepad(I don't have a PC) @Carldric Show me how you used Merger function Last edited by Razor12911; 03-12-2014 at 09:45. |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Having a nightmare with Iomega USB ZipCD - Help! | Tranced | CD/DVD-Writers | 2 | 03-04-2005 06:00 |
PMA Update failure....????????? | dannyk | DVD Backup Forum | 1 | 05-01-2005 14:19 |
I need help to burn DC games | Puppydawg | DC Games | 4 | 26-07-2001 11:38 |
i know nobody likes the new people, but ill try anyway.. | BWeb | DC Games | 3 | 25-07-2001 06:44 |
HELP ME PLZ!!!! | Dalvin | DC Games | 0 | 02-01-2001 22:15 |