OK, so I was running a test (OD 6.2 Win2K) when I had a dir of:some/dir/ then it only creates the folder, but if you send some\dir\ using backslashes then it pushes all the files underneath.Since the filelist is created in a Perl script you [color=red]cannot do something like $file=tr|\\|/|;[/color]because OD wants the backslashes there.Does this make sense ?
$file=tr|\\|/|;
use File::Temp qw(tempfile);...tr|/|\\| foreach(@files);my($fh, $fname) = tempfile();print $fh join("\n", @files) . "\n";close($fh);...
Open a case with Support - it sounds like a bug to me (OD should handle forward slashes on Windows)I'm not sure about the highlighted statement though. You could certainly re-transpose all the paths before putting them into your filelist
Yes I have opened a case with support. You are correct, it can be transposed and then changed back. Or not at all. Special cases like this really screw things up.
Did you check out Patch 1 for OD 6.2?