You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when pointing xmlDirectory to a directory that includes a directory structure with XML files, outputting the SVRL files using the svrlDirectory parameter does not work. It breaks with FileNotFoundException because the directories are non-existant in the svrlDirectory.
A simple solution is to add:
aSVRLFile.getParentFile().mkdirs();
directly after
// Save SVRL
final File aSVRLFile = new File (svrlDirectory, sXMLFilename + ".svrl");
Thanks in advance and kind regards,
Philipp
The text was updated successfully, but these errors were encountered:
Hiya,
when pointing xmlDirectory to a directory that includes a directory structure with XML files, outputting the SVRL files using the
svrlDirectory
parameter does not work. It breaks withFileNotFoundException
because the directories are non-existant in thesvrlDirectory
.A simple solution is to add:
directly after
Thanks in advance and kind regards,
Philipp
The text was updated successfully, but these errors were encountered: