FCLauncher/launcher/src/system_dirs.rs

9 lines
166 B
Rust
Raw Normal View History

2024-06-22 16:54:12 -06:00
use std::{env, path::{Path, PathBuf}};
use dirs::home_dir;
pub fn get_local_data_directory() -> PathBuf {
dirs::data_local_dir().unwrap().join("FCLauncher")
}