Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Windows 上,如果我使用 MKS 工具包外壳,os.getcwd()函数以小写形式返回值。但是在使用 windows cmd 时,它返回了确切的路径。
os.getcwd()
在 Python 中是否可以通过任何方式os.getcwd()返回确切的路径(在 Windows 上不转换为小写)?
您确定这种行为吗?它没有记录,似乎违反直觉,而且我无法重现它(在 Windows 7 上使用 Python 2.7.2):
>>> import os >>> print os.getcwd() C:\Users\foofoofoo
注意开头的大写字符。
在启动 Python 并使用 os.getcwd() 之前,您可能在控制台中使用了“cd c:\your_path”。这个'c'是低还是高很重要。