plastic icon indicating copy to clipboard operation
plastic copied to clipboard

Error Handling in base_save_state_folder

Open silverhadch opened this issue 1 year ago • 0 comments

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.

silverhadch avatar Oct 22 '24 19:10 silverhadch