2022-02-13 18:45:03 +08:00

21 lines
449 B
Rust

use std::path::{Path, PathBuf};
use tauri::{
api::path::{home_dir, resource_dir},
Env, PackageInfo,
};
/// get the verge app home dir
pub fn app_home_dir() -> PathBuf {
home_dir()
.unwrap()
.join(Path::new(".config"))
.join(Path::new("clash-verge"))
}
/// get the resources dir
pub fn app_resources_dir(package_info: &PackageInfo) -> PathBuf {
resource_dir(package_info, &Env::default())
.unwrap()
.join("resources")
}