7 use std::process::exit;
8 use std::env::current_dir;
9 use std::fs::{create_dir_all, remove_dir_all};
11 use crate::file_finder::find_files;
12 use crate::file_handler::FileHandler;
14 fn main() -> Result<()> {
15 let source = current_dir()?;
16 let source_name = source.file_name().unwrap().to_string_lossy();
17 let parent = source.parent().unwrap();
18 let gemini_destination_name = format!("{}_gemini", source_name);
19 let gemini_destination = parent.join(gemini_destination_name);
20 let html_destination_name = format!("{}_html", source_name);
21 let html_destination = parent.join(html_destination_name);
23 // Step 1. Identify the files
24 let files = find_files(&source);
26 // Step 2. Prepare the target priority
27 match remove_dir_all(&html_destination) {
30 create_dir_all(&html_destination)?;
31 match remove_dir_all(&gemini_destination) {
34 create_dir_all(&gemini_destination)?;
36 // Step 3. Load the layout
37 let mut file_handler = FileHandler::default();
38 match file_handler.get_layout_or_panic(&files) {
41 eprintln!("{}", error);
46 // Step 4. Process all files
47 file_handler.handle_all(&source, &html_destination, &gemini_destination, &files);