fix: create dir panic

This commit is contained in:
GyDi 2022-03-07 01:06:21 +08:00
parent f23c83e681
commit 8ea3e6fa26
No known key found for this signature in database
GPG Key ID: 1C95E0D3467B3084

View File

@ -67,13 +67,13 @@ pub fn init_app(package_info: &PackageInfo) {
let res_dir = dirs::app_resources_dir(package_info);
if !app_dir.exists() {
fs::create_dir(&app_dir).unwrap();
fs::create_dir_all(&app_dir).unwrap();
}
if !log_dir.exists() {
fs::create_dir(&log_dir).unwrap();
fs::create_dir_all(&log_dir).unwrap();
}
if !profiles_dir.exists() {
fs::create_dir(&profiles_dir).unwrap();
fs::create_dir_all(&profiles_dir).unwrap();
}
init_log(&log_dir);