Quote:
Originally Posted by Cesar82
@KaktoR
The progress of CIU I think very wrong as it is.
Example: If you put 2 ARC files. The first one with 1 MB and the second with 1 GB.
When extracting the first one (1 MB) will already be showing 50% progress and the remaining time will be equal to the time it took to extract the first 1 MB.
This could be fixed by adding a Size (Size of extracted files)
It would add up all the size and divide by the amount of files.
Code:
//Setup.ini (DiskSpan File)
[ExtractSettings]
ArcFile1=Data1.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:1200;
//Records.ini (UltraArc or DiskSpan File)
[Record1]
Type=Freearc_Original
Source={src}\Data1.bin.001
Output={app}
Disk=1
Size=1200
|
I tried to add this to setup.ini but still does not work.
I have a "data1.bin" which is 160MB and a data2.bin.001 which is 21.4GB.
data1.bin goes to 50% in progress bar.
I used these methos:
Code:
[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1;Size:600;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1;Size:31500;
or
[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1; Size:160;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Size:21400;
or
[ExtractSettings]
ArcFile1=Data1.bin;DestDir:{app};Type:ARC;Disk:1; Progress:5;
ArcFile2=Data2.bin.001;DestDir:{app};Type:ARC;Disk:1; Progress:95;
I even used "Size=**" in Records.ini but still didn't work.