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
On Windows 11 (using VS Code) the second line below locks the file.
I.e. once the line is executed I can no longer amend the file and write to disk (in another application)
My workaround is the first line.
Any idea why this is happening?
Is it possible to define JSON3.read(fi) = JSON3.read(read(fi,String)) as such (I have not looked at the source code)
js = JSON3.read(read(fi,String)); #works perfectly fine
js = JSON3.read(fi); #produces a read/write lock for this file
The text was updated successfully, but these errors were encountered:
On Windows 11 (using VS Code) the second line below locks the file.
I.e. once the line is executed I can no longer amend the file and write to disk (in another application)
My workaround is the first line.
Any idea why this is happening?
Is it possible to define
JSON3.read(fi) = JSON3.read(read(fi,String))
as such (I have not looked at the source code)The text was updated successfully, but these errors were encountered: