I need to create a file called `ecsk.ac` that will be created by the client, but accessed from both the client and server.
Creating the file in meta.xml and putting it into the resource works ofc but fileOpen dosent like that and i doubt fileWrite would like it any better.
-- client code
function setupEncodedClientSignatureKey()
local ecsk = fileOpen("ecsk.ac")
if ecsk then
fileWrite(fileHandle, "some_data_insterted_by_the_client")
fileFlush(fileHandle)
fileClose(fileHandle)
end
end
setupEncodedClientSignatureKey()
Any solutions how can i make this file editable or some alternative?