本文实例为大家分享了python os模块在系统管理中的应用代码,供大家参考,具体内容如下
#临时文件
import tempfile tempfile.gettempdir() #'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp' tempfile.mkstemp() #(4, 'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\tmp9zc5ipzr') tempfile.mkdtemp() #'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\tmp94wxuh44'
#操作系统命令
import os os.chdir(r'd:') #切换到目录(r为转义字符) os.listdir(r'd:') #显示目录下的所有文件 os.makedirs(r'd:\1\1') #创建路径的所有文件 os.mkdir(r'd:\1') #创建文件
#查找
import glob glob.glob('d:*.txt') #目录下的txt文件 glob.glob('d:*n.txt') #目录下的以n.txt结尾的文件
#遍历目录
import re,os,os.path def run(top): for(dirname,subdirs,files) in os.walk(top): print("["+dirname+"]") for fname in files: print(os.path.join(dirname,fname)) if __name__=='__main__': run(r'd:\1')
调用以下函数时要注意以下两点
(1)调用任何函数之前,要先调用start()函数。要有d:\ptest、和ptest下有三个目录:document、files、temp,才能进行其他操作
(2)调用(1)-(8)函数,只需要test8()
例如:解决第八个问题
start() test8()
****d:\ptest、ptest下有三个目录:document、files、temp。
import os,glob,shutil def start(): if os.path.exists(r'd:\ptest'): pass else: os.makedirs(r'd:\ptest\document') os.makedirs(r'd:\ptest\files') os.makedirs(r'd:\ptest\temp')
(1)将c:\windows目录下的所有ini文件复制到document中。
def test1(): file_lists=glob.glob('c:\windows\*.ini') for file in file_lists: shutil.copy(file,r'd:\ptest\document')
(2)将c:\windows目录下以'n'开头的所有文件复制到files中。
def test2(): file_lists=glob.glob('c:\windows\*') #temp=[]#以'n'开头的所有文件 for file in file_lists: files=file.replace('c:\windows\\','') if files.startswith('n'): shutil.copy(file,r'd:\ptest\files') #temp.append(file)
(3)判断files文件夹中是否有notepad.exe文件,如果有,将其复制到temp中,并改名为mypad.exe。
def test3(): if os.path.exists(r'd:\ptest\files\notepad.exe'): shutil.copy(r'd:\ptest\files\notepad.exe',r'd:\ptest\temp\mypad.exe') else: print("没有notepad.exe文件")
(4)判断document文件夹中是否有win.ini文件,如果有将其移动到temp中。
def test4(): if os.path.exists(r'd:\ptest\document\win.ini'): shutil.move(r'd:\ptest\document\win.ini',r'd:\ptest\temp') else: print("没有win.ini文件")
(5)判断document文件夹中是否有system.ini文件,如果有将其以system.inf的名称复制到temp中,然后删除原文件。
def test5(): if os.path.exists(r'd:\ptest\document\system.ini'): #复制删除 shutil.copy(r'd:\ptest\document\system.ini',r'd:\ptest\temp\system.inf') os.remove(r'd:\ptest\document\system.ini') #移动 #shutil.move(r'd:\ptest\document\system.ini',r'd:\ptest\temp') else: print("没有system.ini文件")
(6)在document下新建mydir文件夹,并将temp中的所有文件复制到mydir下。
def test6(): if os.path.exists(r'd:\ptest\document\mydir'): pass else: os.mkdir(r'd:\ptest\document\mydir') '''#遍历找出文件 for (dirpath,dirnames,filenames)in os.walk(r'd:\ptest\document'): for file in filenames: print(os.path.join(dirpath,file)) ''' file_lists=glob.glob('d:\ptest\document\*') for file in file_lists: if os.path.isfile(file): if os.path.exists(file): print("文件已存在") else: shutil.copy(file,r'd:\ptest\document\mydir')
(7)将files目录及其内部所有文件以myfiles目录名整体复制到mydir下,然后删除原来的整个files目录及其内部的所有文件。
def test7(): #移动 shutil.move(r'd:\ptest\files',r'd:\ptest\document\mydir\myfiles') '''#复制,删除 file_lists=glob.glob(r'd:\ptest\files\*') print(file_lists) if os.path.exists(r'd:\ptest\document\mydir\myfiles'): pass else: os.mkdir(r'd:\ptest\document\mydir\myfiles') for file in file_lists: shutil.copy(file,r'd:\ptest\document\mydir\myfiles') os.remove(file) os.rmdir(r'd:\ptest\files') '''
(8)找到此时notepad.exe文件的所在路径,输出其创建时间、最近访问时间和最近修改时间,在输出给文件的大小。
def find(top,name): #find与next_find形成一个轮回,只有发现文件,或文件夹为空时跳出 for (dirpath,dirnames,filenames) in os.walk(top): for file in filenames: if file==name: return os.path.join(dirpath,file) for dirs in dirnames: if dirs==name: return os.path.join(dirpath,dirs) #说明上述文件和目录中无查找内容,将目录列表发给next_find函数 next_find(dirnames,top,name) def next_find(dirnames,top,name): for temp in dirnames: #目录为空时跳出 if not temp : break #更改遍历目录 top=os.path.join(top,temp) #print(top) find(top,name) import time def test8(): #将时间转换为时间参数 geta=time.gmtime(os.path.getatime(find(r'd:\ptest','win.ini'))) getm=time.gmtime(os.path.getmtime(find(r'd:\ptest','win.ini'))) getc=time.gmtime(os.path.getctime(find(r'd:\ptest','win.ini'))) #将时间参数转换为标准时间 print("最近访问时间",time.strftime('%c',geta)) print("最近修改时间",time.strftime('%c',getm)) print("创建时间",time.strftime('%c',getc)) print('大小%.3f'%(os.stat(find(r'd:\ptest','win.ini')).st_size/1024),'kB')
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
python,os模块
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 《暗喻幻想》顺风耳作用介绍
- 崔健1985-梦中的倾诉[再版][WAV+CUE]
- 黄子馨《追星Xin的恋人们2》HQ头版限量编号[WAV+CUE]
- 孟庭苇《情人的眼泪》开盘母带[低速原抓WAV+CUE]
- 孙露《谁为我停留HQCD》[低速原抓WAV+CUE][1.1G]
- 孙悦《时光音乐会》纯银CD[低速原抓WAV+CUE][1.1G]
- 任然《渐晚》[FLAC/分轨][72.32MB]
- 英雄联盟新英雄安蓓萨上线了吗 新英雄安蓓萨技能介绍
- 魔兽世界奥杜尔竞速赛什么时候开启 奥杜尔竞速赛开启时间介绍
- 无畏契约CGRS准星代码多少 CGRS准星代码分享一览
- 张靓颖.2012-倾听【少城时代】【WAV+CUE】
- 游鸿明.1999-五月的雪【大宇国际】【WAV+CUE】
- 曹方.2005-遇见我【钛友文化】【WAV+CUE】
- Unity6引擎上线:稳定性提升、CPU性能最高提升4倍
- 人皇Sky今日举行婚礼!电竞传奇步入新篇章