The fs::create_dir_all(&base_saved_states_dir).ok()?; silently ignores errors when creating directories. If there is an issue with permissions or file system access, it will fail without notifying the user.
Use proper error handling (e.g., expect or Result) to provide more informative feedback.
The fs::create_dir_all(&base_saved_states_dir).ok()?; silently ignores errors when creating directories. If there is an issue with permissions or file system access, it will fail without notifying the user.
Use proper error handling (e.g., expect or Result) to provide more informative feedback.