Find system folder locations in Python

后端 未结 5 854
鱼传尺愫
鱼传尺愫 2020-12-09 06:08

I am trying to find out the location of system folders with Python 3.1. For example \"My Documents\" = \"C:\\Documents and Settings\\User\\My Documents\", \"Program Files\"

5条回答
  •  再見小時候
    2020-12-09 06:27

    I found a slightly different way of doing it. This way will give you the location of various system folders and uses real words instead of CLSIDs.

    import win32com.client
    objShell = win32com.client.Dispatch("WScript.Shell")
    allUserDocs = objShell.SpecialFolders("AllUsersDesktop")
    print allUserDocs
    

    Other available folders: AllUsersDesktop, AllUsersStartMenu, AllUsersPrograms, AllUsersStartup, Desktop, Favorites, Fonts, MyDocuments, NetHood, PrintHood, Recent, SendTo, StartMenu, Startup & Templates

提交回复
热议问题