* @param dirDescription to prepend to error message.
* @throws RuntimeIOException if directory does not exist or if it a flat file.
*/
private static void checkDirectoryExists(OverthereFile dir, String dirDescription) {
if (!dir.exists()) {
throw new RuntimeIOException(dirDescription + " directory " + dir + " does not exist");
}
checkReallyIsADirectory(dir, dirDescription);
}