これは、短いパス (DOS 規則) を返します (Windows の場合):
import tempfile
tempDir = tempfile.mkdtemp()
print tempDir
Output >>> c:\users\admini~1\appdata\local\temp\tmpf76unv
に注意してadmini~1
ください。
これをフルパスに取得/変換するにはどうすればよいですか? 例 C:\users\administrator\appdata...
次のコードを試してください(更新):
from ctypes import create_unicode_buffer, windll
BUFFER_SIZE = 500
buffer = create_unicode_buffer(BUFFER_SIZE)
get_long_path_name = windll.kernel32.GetLongPathNameW
get_long_path_name(unicode(short_path_name), buffer, BUFFER_SIZE)
long_path_name = buffer.value
お役に立てれば。http://mail.python.org/pipermail/python-win32/2008-January/006642.htmlを参照してください
tempDir = win32file.GetLongPathName(tempDir)