|
#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: | ||
|
|
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 |