This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

delete from storage
#1
How to delete all storage records started with "zwave:"
Reply
#2
Utilities - Reset/cleanup and select Script storage. Alternatively you can use Storage app.
------------------------------
Ctrl+F5
Reply
#3
(29.09.2021, 14:41)Daniel Wrote: Utilities - Reset/cleanup and select Script storage. Alternatively you can use Storage app.

when i do this, can i choose to only delete records started with "zwave:"?

manual done with the Storage app is not easy, over the hunderds of records.
Reply
#4
Use this:
Code:
keys = storage.keys('zwave:*')
for _, key in ipairs(keys) do
  storage.delete(key)
end
Reply


Forum Jump: