windows下通过python获取用户桌面路径2010-12-12programming tools约 20 字 预计阅读 1 分钟文章目录【注意】最后更新于 December 12, 2010,文中内容可能已过时,请谨慎使用。1 2 3 4 5 6 from win32com.shell import shell def GetDesktoppath(): ilist = shell.SHGetSpecialFolderLocation(0,shellcon.CSIDL_DESKTOP) dtpath = shell.SHGetPathFromIDList(ilist) return dtpath 文章作者 Chen, Zai-Chun上次更新 2010-12-12许可协议 CC BY-NC-ND 4.0