我需要根据我的python代码确定Windows短文件名。为此,我可以使用win32api找到解决方案。
import win32api
long_file_name='C:\Program Files\I am a file'
short_file_name=win32api.GetShortPathName(long_file_name)
参考:http : //blog.lowkster.com/2008/10/spaces-in-directory-names-i-really-love.html
不幸的是,为此,我需要安装pywin32
或ActivePython
在我的情况下无法安装。
另请参阅SO:
您可以使用ctypes
。根据MSDN上的文档,GetShortPathName
位于中KERNEL32.DLL
。需要注意的是真正的功能是GetShortPathNameW
用于W¯¯ IDE(Unicode)字符和GetShortPathNameA
单字节字符。由于宽字符更为通用,因此我们将使用该版本。首先,根据文档设置原型:
import ctypes
from ctypes import wintypes
_GetShortPathNameW = ctypes.windll.kernel32.GetShortPathNameW
_GetShortPathNameW.argtypes = [wintypes.LPCWSTR, wintypes.LPWSTR, wintypes.DWORD]
_GetShortPathNameW.restype = wintypes.DWORD
GetShortPathName
通过在没有目标缓冲区的情况下首先调用它来使用。它将返回创建目标缓冲区所需的字符数。然后,使用该大小的缓冲区再次调用它。如果由于TOCTTOU问题,返回值仍然较大,请继续尝试直到正确为止。所以:
def get_short_path_name(long_name):
"""
Gets the short path name of a given long path.
http://stackoverflow.com/a/23598461/200291
"""
output_buf_size = 0
while True:
output_buf = ctypes.create_unicode_buffer(output_buf_size)
needed = _GetShortPathNameW(long_name, output_buf, output_buf_size)
if output_buf_size >= needed:
return output_buf.value
else:
output_buf_size = needed
本文收集自互联网,转载请注明来源。
如有侵权,请联系[email protected] 删除。
我来说两句