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