Error Handling in base_save_state_folder #14
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
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 text was updated successfully, but these errors were encountered: