plastic
plastic copied to clipboard
Error Handling in base_save_state_folder
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.