我对Python还是很陌生,在使用os库获取带有与API交互所需信息的json文件时遇到了一些麻烦。这是当前代码,似乎正在引起错误:
STATE_FILE = ".digi-key_api_state.json"
def get_context_file_name():
"""
Returns the complete path to the program state and configuration file.
@return: Full path to the state and configuration file
"""
return os.path.join(os.path.expanduser("~"), STATE_FILE)
这是我收到的错误:
Failed to parse state/cofig file: [Errno 2] No such file or directory: 'C:\\Users\\kkloster\\.digi-key_api_state.json'
我不确定为什么会出现此错误,并尝试以几种不同的方式打开此文件,但始终收到相同的错误。我仔细检查了一下,确实确实将此文件保存为C:\ Users \ kkloster目录下的.digi-key_api_state.json。非常感谢您的任何建议!