Is there a file selector which fully supports long filenames other than the "open" dialog?
I've been using this, which is a good selector (reminiscent of win
3.1), but spaces will cause short file names:
use Win32::FileOp;
my @filenames = Win32::FileOp::OpenDialog(
title => 'Test',
filters => [ 'All' => '*.*'],
defaultfilter => 1,
dir => 'c:\\',
filename => ' ',
handle => 0,
options => OFN_ALLOWMULTISELECT # does multiselect and does
explorer type interface
);
Thanks,
Marcus

