码迷,mamicode.com
首页 > 编程语言 > 详细

Python 定位桌面

时间:2017-11-25 16:19:31      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:explorer   desktop   open   font   version   family   microsoft   mil   16px   

通过注册表寻找桌面路径:

(用内置的winreg)

import winreg

key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, \

                 r‘Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders‘, )

cwd= winreg.QueryValueEx(key, "Desktop")[0]

print(cwd)

Python 定位桌面

标签:explorer   desktop   open   font   version   family   microsoft   mil   16px   

原文地址:http://www.cnblogs.com/liuyunbuji/p/7895350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!