in reply to Re: Short directory names...
in thread Short directory names...
There is also a Win32::GetLongPathName(PATHNAME) function which does the reverse.use Win32; my $long = 'c:\\program files\\microsoft office\\'; my $short = Win32::GetShortPathName($long); print $short;
|
|---|