A rust implementation of the openmw bsatool.
Note: Currently this project only supports BSA files compatible with TES III: Morrowind.
The easiest way right now is to install with cargo:
shell
cargo install bsatool_rs
There is also a library option for manipulating BSAs from other rust code available on crates.io and can be added to a project with:
shell
cargo add bsatoollib
```rust use bsatoollib as bsa;
// open an existing BSA file let bsa = bsa::BSAFile::new("SomeFile.BSA").unwrap();
// print all file names in the BSA for file in bsa.get_list().iter() { println!(file.name); } ```
```shell
bsatool_rs --help A tool for working with BSA files
Usage: bsatool_rs
Commands: list List the files presents in the given BSA file extract Extract a file from the given BSA file extract-all Extract all files from the given BSA file create Create a new BSA file with given files for archiving help Print this message or the help of the given subcommand(s)
Arguments:
Options: -h, --help Print help -V, --version Print version ```
Since bsatool_rs is derivative work of OpenMW's bsatool, it is released under the same license as the openmw code.