in reply to WIN32 File Globbing

there's a bug in your code.
my @names = <$f2dir\*.f2mail>;
should read
my @names = <$f2dir\\*.f2mail>; # or my @names = <$f2dir/*.f2mail>;

~Particle