<text>
Perl Version 5.
When I use the chdir function on windows2000 it does not seem to work. I also tried the parameter -initialdir and it also does not work. When I use it on Winnt it works without any problem. Any clues ?
<text>
<code>
my $_pwd = getcwd();
chdir("c:\\tmp") or print STDERR "\n\tERROR in chdir: $!\n";
$file = $w->getOpenFile(-filetypes => \@types);
<code>