Skip to content

cuzitsjonny/ARCExtractor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ARCExtractor

Introduction

This tool can extract a single archive file (.arc) or multiple ones, if an index file (.ind) is provided. More information about these file types can be found here.

Usage

In any case an input file (source) and an output directory (destination) must be provided.

Single archive file

If an archive file is provided as the input file, the tool will extract all entries from the archive directly into the output directory.

Example:

ARCExtractor.exe "C:\Program Files (x86)\Steam\steamapps\common\Loadout\Data\01DBC177.ARC" "C:\Extracted"

Result:

C:\
└── Extracted\
        ├── 0x1abd63ca
        ├── 0x1c2e041
        ├── 0x1c236c91
        └── ...

Index file

If an index file is provided as the input file, the tool will create a subdirectory in the output directory for each archive file registered in the index and extract the respective entries into the respective subdirectories. It will try to find the archive files in the same directory as the provided index file.

Example:

ARCExtractor.exe "C:\Program Files (x86)\Steam\steamapps\common\Loadout\Data\index.ind" "C:\Extracted"

Result:

C:\
└── Extracted\
        ├── 01DBC177.ARC\
        │       ├── 0x1abd63ca
        │       ├── 0x1c2e041
        │       ├── 0x1c236c91
        │       └── ...
        ├── 4ED964ED.ARC\
        │       └── ...
        └── ...

About

An archive extraction tool for the game Loadout.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages