View Single Post
  #13  
Old 12-04-2020, 02:52
pincoball pincoball is offline
Registered User
 
Join Date: Mar 2020
Location: Italy
Posts: 29
Thanks: 20
Thanked 10 Times in 8 Posts
pincoball is on a distinguished road
Regarding the problem of the splitting feature of UltraARC, I think I've found the causes of it during the merging

First problem:

The split.exe executable were not extracted from the {tmp} directory:

Solution:

from

Code:
procedure UnpackCompressors();
var
  CurrFile: String;
begin
  ExtractTemporaryFile('Arc.ini');
  ...
  ExtractTemporaryFile('Facompress_mt.dll');
to

Code:
procedure UnpackCompressors();
var
  CurrFile: String;
begin
  ExtractTemporaryFile('Arc.ini');
  ...
  ExtractTemporaryFile('Facompress_mt.dll');
  ExtractTemporaryFile('Split.exe');
Second problem:

Edit: Removed: It was a problem that I made in my script

Edit: I also attach the records.ini I've been using just for reference
Attached Files
File Type: zip Records.zip (318 Bytes, 10 views)

Last edited by pincoball; 12-04-2020 at 05:11.
Reply With Quote