How to Extract Multiple SAR Files with SAPCAR

SAPCAR is a tool specially developed by SAP to extract and compress files. Most of the files in SAP Service Market Place are in .SAR type. So, you need to use SAPCAR to extract the files.

But, if you have multiple .SAR files (example, 200 hundreds!) – then, you need to know how to extract them in single shot as you are not going to extract them one by one!

To do this, you can use one from the following commands,

SAPCAR -xvf "KD123*.CAR"
SAPCAR -xvf "*.SAR"
for %f in (*.CAR, *.SAR) do sapcar -xvf %f

You May Also Like

Leave a Reply?