bsatoollib 0.2.1

A library for working with BSA files
Documentation

A simple library to using Bethesda BSA files.

Usage

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);
}