def filesDir = $files.getFilesDir() def file = $files.buildFile { setPath(filesDir, "tmp/aaa.txt") } file.writeText("hello world", "UTF-8") $console.log(file.readLines("UTF-8")) file.delete()