diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-25 10:09:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 10:09:04 +0100 |
commit | 345b617c765c29c44627f5657ed2056c731481c9 (patch) | |
tree | e6436b097da03800d278e564f0974a1f36724228 /src-tauri/src/lib.rs | |
parent | f65a330bba626435510bc9f6afccd6d895416bc3 (diff) | |
download | FlightCore-345b617c765c29c44627f5657ed2056c731481c9.tar.gz FlightCore-345b617c765c29c44627f5657ed2056c731481c9.zip |
refactor: Move function to dedicated module (#67)
Getting log files is part of repair and troubleshooting
Diffstat (limited to 'src-tauri/src/lib.rs')
-rw-r--r-- | src-tauri/src/lib.rs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index ff923cb1..fbef3bac 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -321,34 +321,6 @@ pub fn convert_release_candidate_number(version_number: String) -> String { version_number.replace("-rc", "0").replace("00", "") } -pub fn get_log_list(game_install: GameInstall) -> Result<Vec<std::path::PathBuf>, String> { - let ns_log_folder = format!("{}/R2Northstar/logs", game_install.game_path); - - // Check if logs folder exists - if !std::path::Path::new(&ns_log_folder).exists() { - return Err("No logs folder found".to_string()); - } - - // List files in logs folder - let paths = std::fs::read_dir(ns_log_folder).unwrap(); - - // Stores paths of log files - let mut log_files: Vec<std::path::PathBuf> = Vec::new(); - - for path in paths { - let path = path.unwrap().path(); - if path.display().to_string().contains("nslog") { - log_files.push(path); - } - } - - if log_files.len() > 0 { - Ok(log_files) - } else { - Err("No logs found".to_string()) - } -} - /// Returns a serde json object of the parsed `enabledmods.json` file pub fn get_enabled_mods(game_install: GameInstall) -> Result<serde_json::value::Value, String> { let enabledmods_json_path = format!( |