public void testFindAllSubdirs() throws Exception {
// Make a loop dir with a subdir
String subdirName = "bogus";
BasePath path0 = CrawlDirUtils.makeLoopDir(_platform, _outputPath, 0);
BasePath subdirPath0 = _platform.makePath(path0, subdirName);
subdirPath0.mkdirs();
// And another one without the subdir
BasePath path1 = CrawlDirUtils.makeLoopDir(_platform, _outputPath, 1);
BasePath[] allSubdirPathsArr = CrawlDirUtils.findAllSubdirs(_platform, _outputPath, subdirName);