local filesDir = _files:getFilesDir() local file = _files:buildFile(function(fileBuilder) fileBuilder:setPath(filesDir, "tmp/aaa") end) _console:log(file:isDirectory()) file:mkdirs() _console:log(file:isDirectory()) file:delete()