def _create_local_storage():
"""Adds local storage option for data storage of spykeball statistics."""
storage_target = Path.home().joinpath(LOCAL_STORAGE)
storage_target.mkdir(exist_ok=True)
storage_target.joinpath(LOCAL_PLAYER_STORAGE).mkdir(exist_ok=True)
storage_target.joinpath(LOCAL_GAME_STORAGE).mkdir(exist_ok=True)
return storage_target
评论列表
文章目录