在Python中比较两个Windows路径,其中一个包含波浪号
我正在尝试在程序中使用 TMP 环境变量。当我询问时,
tmp = os.path.expandvars("$TMP")
我得到
C:\Users\STEVE~1.COO\AppData\Local\Temp
其中包含老式的波形符形式。我无法控制返回路径的函数,就像
C:\Users\steve.cooper\AppData\Local\Temp\file.txt
我的问题是这样的;我想检查该文件是否在我的临时驱动器中,但我找不到比较它们的方法。如何判断这两个 Windows 目录;
C:\Users\STEVE~1.COO\AppData\Local\Temp
C:\Users\steve.cooper\AppData\Local\Temp
是一样的吗?
I'm trying to use the TMP environment variable in a program. When I ask for
tmp = os.path.expandvars("$TMP")
I get
C:\Users\STEVE~1.COO\AppData\Local\Temp
Which contains the old-school, tilde form. A function I have no control over returns paths like
C:\Users\steve.cooper\AppData\Local\Temp\file.txt
My problem is this; I'd like to check if the file is in my temp drive, but I can't find a way to compare them. How do you tell if these two Windows directories;
C:\Users\STEVE~1.COO\AppData\Local\Temp
C:\Users\steve.cooper\AppData\Local\Temp
are the same?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是仅使用标准 Python 库中的 ctypes 的替代解决方案。
Here is alternative solution using only ctypes from Standard Python Library.
您将需要来自 http://sourceforge.net/projects/pywin32/ 的 python win32 扩展我使用 ActiveState 打包的 python
它们包含函数 win32file.GetLongPathName ,它将把 8.3 版本转换为完整路径。
You will need the python win32 extensions from http://sourceforge.net/projects/pywin32/ or I use python packaged by ActiveState
They include the function win32file.GetLongPathName which will transform the 8.3 version into the full path.