I'm trying to create and read a hidden file (A file that begins with a dot) using the fs plugin, in tauri v2. The error im getting whenever I try to do either is: Unhandled Promise Rejection: forbidden path: /Users/path/.filename
These are the fs capabilities I've got set up.
"fs:default",
{
"identifier": "fs:scope",
"allow": [{ "path": "/" }, { "path": "/**" }]
},
"fs:allow-home-write-recursive",
"fs:allow-home-read-recursive",
Any ideas?