如何在Python中获取主目录?

这个问题在这里已经有了答案:

  • 如何使用python找到真正的用户主目录? 8个答案

  • 你想使用os.path.expanduser。 这将确保它可以在所有平台上运行

    from os.path import expanduser
    home = expanduser("~")
    

    如果你使用Python 3.5+,你可以使用pathlib.Path.home():

    from pathlib import Path
    home = str(Path.home())
    
    链接地址: http://www.djcxy.com/p/54555.html

    上一篇: How to get the home directory in Python?

    下一篇: platform file name handling in .NET Core