python获取当前系统的桌面的路径】的更多相关文章

一,用内置的winreg(推荐) import winregdef get_desktop():    key = winreg.OpenKey(winreg.HKEY_CURRENT_USER,\                          r'Software\Microsoft\Windows\CurrentVersion\Explorer\ShellFolders',)    return winreg.QueryValueEx(key, "Desktop")[0] 二,…
import winreg import os def main(): new_path = os.path.join(desktop_path(), 'aaa.xlsx') # 结果为:C:\\Users\\Administrator\\Desktop\\aaa.xlsx print(new_path) # 获取当前系统的桌面绝对路径 def desktop_path(): key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r'Software\Mi…
Python获取当前系统时间 import time #返回当前时间 def GetNowTime():     return time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(time.time())) 扩展 python中时间日期格式化符号: %y 两位数的年份表示(00-99) %Y 四位数的年份表示(000-9999) %m 月份(01-12) %d 月内中的一天(0-31) %H 24小时制小时数(0-23) %I 12小时制小…
一.路径分类 1.绝对路径 完整路径,从磁盘符号开始,如:C:\Windows 2.相对路径 以当前路径为起点,不包含磁盘符号,通常使用“..\”符号来访问上级目录中的文件或文件夹. ../Windows/System32 二.Windows系统常见的特殊路径 1.当前路径 2.我的文档 3.收藏夹 4.桌面 5.最近使用的文档 6.程序当前路径 三.路径获取示例 private void btnGetCurPath_Click(object sender, EventArgs e) { txb…
哪个Python版本? 当我提及Python,所指的就是CPython 2(准确的是2.7).我会显式提醒那些相同的代码在CPython 3 (3.3)上是不工作的,以及提供一份解释不同之处的备选代码.请确保你已经安装了CPython,在终端上输入python或者python3回车,然后你在终端上应该能看到python的提示符(prompt). 请注意,所有的程序在它们第一行都是#!/usr/bin/env/python,也就是说,我们想要Python的解释器来执行这些脚本.因此,如果你想你的脚…
import os import platform def getSeparator(): ''' 获取不同平台下的斜杠符号 :return: Created by Wu Yongcong 2017-8-17 ''' if 'Windows' == platform.system(): separator = '\\' else: separator = '/' return separator sysEnv = getSeparator() def getRootDir(): ""&…
原文:http://amitsaha.github.io/site/notes/articles/python_linux/article.html In this article, we will explore the Python programming language as a tool to retrieve various information about a system running Linux. Let’s get started. Which Python? When…
转自:https://www.cnblogs.com/-ldzwzj-1991/p/5889629.html 取得时间相关的信息的话,要用到python time模块,python time模块里面有很多非常好用的功能,你可以去官方 文档了解下,要取的当前时间的话,要取得当前时间的时间戳,时间戳好像是1970年到现在时间相隔的时间. 你可以试下下面的方式来取得当前时间的时间戳: import time print time.time() 输出的结果是: 1357723206.31 但是这样是一连…
print('getcwd', os.getcwd()) print('sysargv', sys.argv) print('realpath', os.path.realpath(sys.argv[0])) print('realpath.split', os.path.split(os.path.realpath(sys.argv[0]))[0]) print('__file__', __file__) print('__file__.dir', os.path.dirname(__file…
获取当前系统桌面.我的照片.我的文档等路径   using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace GetDeskDirectory { public partial class Form1 : For…