mirror of
https://github.com/NinjaCheetah/rustii.git
synced 2026-03-03 11:25:29 -05:00
Added basic support for displaying info about U8 archives to rustii CLI
This commit is contained in:
@@ -345,19 +345,3 @@ impl U8Archive {
|
||||
Ok(buf)
|
||||
}
|
||||
}
|
||||
|
||||
// pub fn print_full_tree(dir: &Rc<RefCell<U8Directory>>, indent: usize) {
|
||||
// let prefix = " ".repeat(indent);
|
||||
// println!("{}D {}", prefix, dir.borrow().name);
|
||||
//
|
||||
// // Print subdirectories
|
||||
// for subdir in &dir.borrow().dirs {
|
||||
// print_full_tree(subdir, indent + 1);
|
||||
// }
|
||||
//
|
||||
// // Print files
|
||||
// for file in &dir.borrow().files {
|
||||
// let file_name = &file.borrow().name;
|
||||
// println!("{} F {}", prefix, file_name);
|
||||
// }
|
||||
// }
|
||||
|
||||
Reference in New Issue
Block a user