let source = current_dir()?;
let source_name = source.file_name().unwrap().to_string_lossy();
let parent = source.parent().unwrap();
- let destination_name = format!("{}_html", source_name);
- let destination = parent.join(destination_name);
+ let gemini_destination_name = format!("{}_gemini", source_name);
+ let gemini_destination = parent.join(gemini_destination_name);
+ let html_destination_name = format!("{}_html", source_name);
+ let html_destination = parent.join(html_destination_name);
// Step 1. Identify the files
let files = find_files(&source);
// Step 2. Prepare the target priority
- match remove_dir_all(&destination) {
+ match remove_dir_all(&html_destination) {
_ => {}
};
- create_dir_all(&destination)?;
+ create_dir_all(&html_destination)?;
+ match remove_dir_all(&gemini_destination) {
+ _ => {}
+ };
+ create_dir_all(&gemini_destination)?;
// Step 3. Load the layout
let mut file_handler = FileHandler::default();
}
// Step 4. Process all files
- file_handler.handle_all(&source, &destination, &files);
+ file_handler.handle_all(&source, &html_destination, &gemini_destination, &files);
Ok(())
}