Hey Peeps,
whenever I create or open a file, I close it after everything is done by fileClose.
But as long as I don't restart/stop the responsible resource, its not possible to delete the file in its folder.
local newFile = fileCreate(file.path)
fileWrite(newFile, file.data)
fileClose(newFile)
E.g. something like that. The new created file is still active in some way.
Am I doing something wrong?
Bonsai