You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exception has occurred: FileNotFoundError
[WinError 2] The system cannot find the file specified: 'accessory.state'
File "C:\Users\OWNER\homekit_test\HAP-python\pyhap\accessory_driver.py", line 648, in persist
os.chmod(self.persist_file, 0o644)
File "C:\Users\OWNER\homekit_test\HAP-python\pyhap\accessory_driver.py", line 483, in add_accessory
self.persist()
File "C:\Users\OWNER\homekit_test\HAP-python\main.py", line 57, in
driver.add_accessory(accessory=get_accessory(driver))
FileNotFoundError: [WinError 2] The system cannot find the file specified: 'accessory.state'
The text was updated successfully, but these errors were encountered:
May I ask if you are experiencing this issue under the Windows operating system?
I have also encountered this issue. I tried to add the following code in line 646 of "pyhap/accessory_driver. py" to solve this problem。
with open(self.persist_file, "w", encoding="utf8") as file_handle:
self.encoder.persist(file_handle, self.state)
On Windows os.chmod fails if the file doesn't exist; it's failing trying to make the current persistence file writable by the user, in preparation for swapping in the temporary file just written.
Exception has occurred: FileNotFoundError
[WinError 2] The system cannot find the file specified: 'accessory.state'
File "C:\Users\OWNER\homekit_test\HAP-python\pyhap\accessory_driver.py", line 648, in persist
os.chmod(self.persist_file, 0o644)
File "C:\Users\OWNER\homekit_test\HAP-python\pyhap\accessory_driver.py", line 483, in add_accessory
self.persist()
File "C:\Users\OWNER\homekit_test\HAP-python\main.py", line 57, in
driver.add_accessory(accessory=get_accessory(driver))
FileNotFoundError: [WinError 2] The system cannot find the file specified: 'accessory.state'
The text was updated successfully, but these errors were encountered: