-
Batch render scrip to skip existing files
Hey all, how do I change the script below to skip a file that exists already instead of just quitting the whole batch render process?
// validate all files and propmt for overwrites
foreach (RenderArgs args in renders) {
ValidateFilePath(args.OutputFile);
if (!OverwriteExistingFiles)
{
if (File.Exists(args.OutputFile)) {
String msg = “File(s) exists. Do you want to overwrite them?”;
DialogResult rs;
rs = MessageBox.Show(msg,
“Overwrite files?”,
MessageBoxButtons.OKCancel,
MessageBoxIcon.Warning,
MessageBoxDefaultButton.Button2);
if (DialogResult.Cancel == rs) {
return;
} else {
OverwriteExistingFiles = true;
}
}
}
}