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
Because of this I get read error for any non-existent file, and maybe some incorrect behaviour for file names that match JSON
using JSON3
JSON3.read("123") # is it file or value? now its a valueopen("123", "w") do io
write(io, """ { "some":"data" }""")
end
JSON3.read("123") # but now this is filerm("123") # unlink("123"): permission denied (EACCES)