Mail Archives: cygwin/1998/02/04/16:11:19
James Pearson wrote:
>
> Is there any way I can get the short filename from a long filename using
> gnu-win32 on Win95?
>
> For example, using readdir() gives the long filename as part of the
> returned struct dirent, but I also need to know its short version.
>
> Is this possible?
>
> Thanks
>
> James Pearson
> +------------------------------------------------------------------------+
> Dept. Geomatic Engineering Email: j DOT pearson AT ge DOT ucl DOT ac DOT uk
> University College London WWW: http://www.ge.ucl.ac.uk
> Gower Street
> London WC1E 6BT
> England
> -
> For help on using this list (especially unsubscribing), send a message to
> "gnu-win32-request AT cygnus DOT com" with one line of text: "help".
I don't know if this will help you or not, but the Win32 API has a
function called GetShortPathName. The prototype is :
DWORD GetShortPathName(LPCTSTR lpszLongPath, // points to a
null-terminated path string
LPTSTR lpszShortPath, // points to a buffer to receive the
null-terminated short form of the path
DWORD cchBuffer // specifies the size of the buffer pointed to
by lpszShortPath
);
Hope you find this useful!
John D. Rogers
jrogers AT cascadenet DOT com
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -