Is anyone here running my Matter Bridge on Windows, any issues or tips? I'm wondering where the default file storage ends up, on linux it would be in ~/.matter
Got a user on GitHub having trouble but I don't have any Windows systems here to test with.
Windows is POSIX compliant (well mostly anyway) and so such things often work the same on Windows as on Unix. In this case though, ~ referring to the users home folder only works in PowerShell.
More usefully, you should find that the %USERPROFILE% environment variable points to the current users home folder. However, do take care when trying to use that with a service like Node-RED. That's because, depending on how you've started Node-RED, you might not get the profile folder you are expecting or maybe none at all.
There will also be more esoteric methods to get the folder if you need to run without the right context but you will need the user's login ID which will require admin access.