local filesDir = _files:getFilesDir() local file = _files:buildFile(function(fileBuilder) fileBuilder:setPath(filesDir, "tmp/aaa.txt") end) file:writeText("hello world", "UTF-8") file:writeBytes(file:readBytes()) _console:log(file:readText("UTF-8")) file:delete()