in report-builder/src/jetbrains/coverage/report/impl/IOUtil.java [36:42]
public static File createDir(File dir) throws IOException {
if (!dir.exists() && !dir.mkdirs()) {
throw new IOException("Failed to create directory: " + dir.getAbsolutePath());
}
return dir;
}