I need to convert paths in 8.3 convention to full path.
In Perl, I can use Win32::GetLongPathName() as pointed out in How do I get full Win32 path from 8.3 DOS path with Perl? But, I need to do it in Python.
I need to convert paths in 8.3 convention to full path. In Perl, I
Share
Use
ctypeswhich is available in the Python standard without the need of using the pywin32 API. Like this:From http://mail.python.org/pipermail/python-win32/2008-January/006642.html