mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 05:23:44 +08:00
62 lines
1.4 KiB
Rust
62 lines
1.4 KiB
Rust
use std::env::temp_dir;
|
|
use std::path::{Path, PathBuf};
|
|
use tauri::{
|
|
api::path::{home_dir, resource_dir},
|
|
Env, PackageInfo,
|
|
};
|
|
|
|
#[cfg(not(feature = "verge-dev"))]
|
|
static APP_DIR: &str = "clash-verge";
|
|
#[cfg(feature = "verge-dev")]
|
|
static APP_DIR: &str = "clash-verge-dev";
|
|
|
|
static CLASH_CONFIG: &str = "config.yaml";
|
|
static VERGE_CONFIG: &str = "verge.yaml";
|
|
static PROFILE_YAML: &str = "profiles.yaml";
|
|
static PROFILE_TEMP: &str = "clash-verge-runtime.yaml";
|
|
|
|
/// get the verge app home dir
|
|
pub fn app_home_dir() -> PathBuf {
|
|
home_dir()
|
|
.unwrap()
|
|
.join(Path::new(".config"))
|
|
.join(Path::new(APP_DIR))
|
|
}
|
|
|
|
/// get the resources dir
|
|
pub fn app_resources_dir(package_info: &PackageInfo) -> PathBuf {
|
|
resource_dir(package_info, &Env::default())
|
|
.unwrap()
|
|
.join("resources")
|
|
}
|
|
|
|
/// profiles dir
|
|
pub fn app_profiles_dir() -> PathBuf {
|
|
app_home_dir().join("profiles")
|
|
}
|
|
|
|
/// logs dir
|
|
pub fn app_logs_dir() -> PathBuf {
|
|
app_home_dir().join("logs")
|
|
}
|
|
|
|
pub fn clash_path() -> PathBuf {
|
|
app_home_dir().join(CLASH_CONFIG)
|
|
}
|
|
|
|
pub fn verge_path() -> PathBuf {
|
|
app_home_dir().join(VERGE_CONFIG)
|
|
}
|
|
|
|
pub fn profiles_path() -> PathBuf {
|
|
app_home_dir().join(PROFILE_YAML)
|
|
}
|
|
|
|
pub fn profiles_temp_path() -> PathBuf {
|
|
#[cfg(not(feature = "debug-yml"))]
|
|
return temp_dir().join(PROFILE_TEMP);
|
|
|
|
#[cfg(feature = "debug-yml")]
|
|
return app_home_dir().join(PROFILE_TEMP);
|
|
}
|