View Single Post
  #40  
Old 26-09-2016, 12:15
ChronoCross's Avatar
ChronoCross ChronoCross is offline
Registered User
 
Join Date: Sep 2014
Location: Acacia Dragons
Posts: 254
Thanks: 145
Thanked 203 Times in 115 Posts
ChronoCross is on a distinguished road
i have this code:
Code:
[External compressor:pzstd]
header = 0
packcmd   = pzstd.exe $$arcdatafile$$.tmp -o $$arcpackedfile$$.tmp  {options}    
unpackcmd = pzstd.exe -d -f $$arcpackedfile$$.tmp -o $$arcdatafile$$.tmp
the thing is to use numbers of threads (-n 6) in arc.exe
Code:
-mpzstd:n 6:p:u:19
the code in arc.exe does not accept spaces and that`s is the problem because i need to write this option in arc.ini

Code:
[External compressor:pzstd]
header = 0
packcmd   = pzstd.exe $$arcdatafile$$.tmp -o $$arcpackedfile$$.tmp -n 6  {options}    
unpackcmd = pzstd.exe -d -f $$arcpackedfile$$.tmp -o $$arcdatafile$$.tmp
where i can get the source code only to chage this parameter -n (the space thing)

thanks

----------------------------------------------------------------------

Edited

Problem solved with quotation marks!

Code:
-mpzstd:"n 6":p:u:19
sorry for spend your time

Last edited by ChronoCross; 26-09-2016 at 12:47. Reason: Because i so stupid :P
Reply With Quote
The Following User Says Thank You to ChronoCross For This Useful Post:
JRD! (27-09-2016)