What is the best way to iterate on filed in a specific folder, but without loops? i.e, the for loop will end when all the files be checked once.
My example code (with loop):
File dir = new File(svnClient.getDestinationPath().getAbsolutePath());
for (File child : dir.listFiles())
{
report.report("File name: " + child.getName());
}
Recursion: