Check to see if the directory exists. If the directory does not exist, it will automatically create it.
(storage_manager, save_location)
| 238 | |
| 239 | |
| 240 | def check_save_location(storage_manager, save_location): |
| 241 | """ |
| 242 | Check to see if the directory exists. |
| 243 | If the directory does not exist, it will automatically create it. |
| 244 | """ |
| 245 | storage_manager.create_folder(save_location) |
| 246 | |
| 247 | |
| 248 | def main(logger=None): |