pub fn handle_many_spectra(
    path: &str,
    export_path: &str
) -> Result<String, Box<dyn Error>>
Expand description

Parses a directory path (subdirectories included)., finds all .asp files contained within, and generates the same folder structure with converted .csv files in export_path

Examples

use asp_lib::handle_many_spectra;
handle_many_spectra(".", "./exported files")