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.
我知道python中有很多路径API,但我正在寻找一个API,它可以为我提供脚本正在执行的系统的根目录。不是脚本本身的根目录,而是实际系统的根目录。
因此,对于标准的 Windows 笔记本电脑,我至少希望
C:\
然后,如果我连接了某些东西,例如通过 USB 连接的 android 设备。
有小费吗?请注意,我在这里特别感兴趣的是 Windows。
谢谢。
试试这个代码:
>>> import os >>> os.path.expandvars("%SystemRoot%") 'C:\\Windows'