getFilesDir(); $file = $files->buildFile(function ($fileBuilder) use ($filesDir) { $fileBuilder->setPath($filesDir, "tmp/aaa.txt"); }); $console->log($file->isFile()); $file->createNewFile(); $console->log($file->isFile()); $file->delete();