1use arkive::*; 2use std::io::Result; 3 4fn main() -> Result<()> { 5 Ark::scan("./src")?.write("./copy_of_src")?; 6 Ok(()) 7}