in lib/prolog/java/PrologCompiler.java [38:44]
private static File tmpdir(String name) throws IOException {
File d = File.createTempFile(name + "_", "", tmpdir);
if (!d.delete() || !d.mkdir()) {
throw new IOException("Cannot mkdir " + d);
}
return d;
}