private void createCleanDirectoryOperation(String[] unlinkedInstallPaths, boolean verbose, InstallOptions options) {
for (int i = 0; i < unlinkedInstallPaths.length; i++) {
String installPath = unlinkedInstallPaths[i];
if (verbose)
System.out.println("Preparing to delete: " + installPath);
add(new CleanDirectoryOperation(options, new File(installPath), null, false,
IBackupOptions.OPTION_NO_BACKUP));
}
}