family_graph 0.2.2

A Rust application to generate family relationship graphs from Excel data.
Documentation
use dotenv::dotenv;
use family_graph::run_grapher;
use std::{env, path::Path};

fn main() {
    dotenv().ok();
    match dotenv() {
        Ok(path) => println!("Loaded .env from: {:?}", path),
        Err(e) => println!("Could not load .env file: {}", e),
    }
    println!(
        "Current working directory: {:?}",
        env::current_dir().unwrap()
    );
    let path = "./Wistoft_familien.xls";

    let full_path = Path::new(&path);
    println!("Looking for file: {}", full_path.display());
    if full_path.exists() {
        println!("File exists at the specified path");
        if let Err(e) = run_grapher(full_path, "Ark1") {
            eprintln!("Error running grapher: {}", e);
        };
    } else {
        println!("File does NOT exist at the specified path");

        // If it's a relative path, show what the absolute path would be
        if let Ok(absolute_path) = Path::new(&path).canonicalize() {
            println!("Absolute path would be: {}", absolute_path.display());
        } else {
            println!("Cannot determine absolute path (file doesn't exist)");
            if let Ok(entries) = std::fs::read_dir("./static") {
                for entry in entries.flatten() {
                    let filename = entry.file_name().to_string_lossy().to_lowercase();
                    if filename == "wistoft_familien.xls" {
                        println!(
                            "Found file with different case: {}",
                            entry.file_name().to_string_lossy()
                        );
                    }
                }
            }
        }
    }
}