Feature request: Export multiple image indexes in one operation from solid archive

Comments, questions, bug reports, etc.
Post Reply
asdddsa101
Posts: 17
Joined: Fri Jul 14, 2023 7:39 am

Feature request: Export multiple image indexes in one operation from solid archive

Post by asdddsa101 »

In a solid archive using the LZMS algorithm. For example, there are 20 indexes in a image file, and I need to export indexes 3, 5, 7, and 9, which requires four operations. However, for the export of solid archives, each operation will read the source file from the beginning, making the speed very slow. Can I export multiple image indexes in one operation like this command?

Current:

Code: Select all

wimlib-imagex export src.esd 3 dest.wim
wimlib-imagex export src.esd 5 dest.wim
wimlib-imagex export src.esd 7 dest.wim
wimlib-imagex export src.esd 9 dest.wim
Desired implementation:

Code: Select all

wimlib-imagex export src.esd dest.wim --source-index=3,5,7,9
Post Reply