if (copyrightFile != null) {
copyrightFileObj = new File(copyrightFile);
}
// ISO9660 support
ISO9660Config iso9660Config = new ISO9660Config();
iso9660Config.setVolumeID(name);
iso9660Config.setSystemID(system);
iso9660Config.setPublisher(publisher);
iso9660Config.setDataPreparer(dataPreparer);
iso9660Config.allowASCII(allowASCII);
iso9660Config.restrictDirDepthTo8(restrictDirDepthTo8);
iso9660Config.forceDotDelimiter(forceDotDelimiter);
iso9660Config.setInterchangeLevel(interchangeLevel);
iso9660Config.setPadEnd(padEnd);
if (copyrightFileObj != null) {
iso9660Config.setCopyrightFile(copyrightFileObj);
}
// Rock Ridge support
RockRidgeConfig rrConfig = null;
if (enableRockRidge) {