使用Python过程中,经常需要对文件和目录进行操作。所有file类/os/os.path/shutil模块时每个Python程序员必须学习的。
下面通过两段code来对其进行学习。
1. 学习 file对象
2. 学习os/os.path/shutil模块
1.file对象学习:
项目中需要从文件中读取配置参数,python可以从Json,xml等文件中读取数据,然后转换成Python的内容数据结构。
下面以Json文件为例,实现从Json文件中获取配置参数。
code运行环境:python27+eclipse+pydev
Json文件名字:config_file.json
Json文件path:C:\temp\config_file.json
Json文件中的内容:
{"user":"Tom","username":"root_tom","password":"Jerryispig","ipaddr":"10.168.79.172"}
{"user":"Jerry","username":"root_jerry","password":"Tomispig","ipaddr":"10.168.79.173"}
代码如下:
import json #use json file ,you must import json. def verify_file_class(): file_json=open(r'C:\temp\config_file.json','r') # open config_file.json file with 'r' for each_line in file_json.readlines(): #read each line data print each_line # verify each line data by print each line data each_line_dict = json.loads(each_line) # each row of the data into the 'dict'type of python print 'the type of the each_line_dict:{type}'.format(type=type(each_line_dict)) # verify whether is‘dict'type print 'user is: {user}'.format(user=each_line_dict['user']) print 'username is: {username}'.format(username=each_line_dict['username']) print 'password is: {password}'.format(password=each_line_dict['password']) print 'ipaddr is: {ipaddr} \n'.format(ipaddr=each_line_dict['ipaddr']) #use username,password, ipaddr ( enjoy your programming ! ) file_json.close() # don't forgot to close your open file before. if __name__ == '__main__': verify_file_class()
运行结果:
{"user":"Tom","username":"root_tom","password":"Jerryispig","ipaddr":"10.168.79.172"} the type of the each_line_dict:<type 'dict'> user is: Tom username is: root_tom password is: Jerryispig ipaddr is: 10.168.79.172 {"user":"Jerry","username":"root_jerry","password":"Tomispig","ipaddr":"10.168.79.173"} the type of the each_line_dict:<type 'dict'> user is: Jerry username is: root_jerry password is: Tomispig ipaddr is: 10.168.79.173
学习os/os.path/shutil模块
在任何一个稍微大一点的项目中,少不了的需要对目录进行各种操作,
比如创建目录,删除目录,目录的合并等各种有关目录的操作。
下面以一段code为例,来实现对os/os.path/shutil模块的学习。
下面的code实现的是删除文件夹installation内的所有文件(里面有文件和文件夹),
注意:是删除文件夹installation里面所有的文件,并不删除installation这个文件夹。
代码如下:
code运行环境:python27+eclipse+pydev
import os import shutil def empty_folder(dir): try: for each in os.listdir(dir): path = os.path.join(dir,each) if os.path.isfile(path): os.remove(path) elif os.path.isdir(path): shutil.rmtree(path) return 0 except Exception as e: return 1 if __name__ == '__main__': dir_path=r'D:\installation' empty_folder(dir_path)
上面短短的几行代码,就包含了6个与os/os.path/shutil模块相关的API。分别是:
1. os.listdir(dir) 2. os.path.join(dir, each) 3. os.path.isfile(path) /os.path.isdir(path) 4. os.remove(path) 5. shutil.rmtree(path)
下面分别对上面6个最常见的与目录有关的API进行简单的学习。
1. os.listdir(dir)
这个函数返回指定目录下的所有文件和目录名组成的一个列表。
就是说返回一个列表,这个列表里的元素是由指定目录下的所有文件和目录组成的。
> import os > os.listdir(r'c:\\') ['$Recycle.Bin', 'Documents and Settings', 'eclipse', 'hiberfil.sys', 'inetpub', 'Intel', 'logon_log.txt', 'MSOCache', 'pagefile.sys', 'PerfLogs'<span style="font-family: Arial, Helvetica, sans-serif;">]</span>
2. os.path.join(dir, each)
连接目录与文件名或目录
> import os > os.path.join(r'c:\doog',r's.txt') 'c:\\doog\\s.txt' > os.path.join(r'c:\doog',r'file') 'c:\\doog\\file'
3. os.path.isfile(path) / os.path.isdir(path)
os.path.isfile(path) 用于判断path是否为文件,若是文件,返回True,否则返回False。
os.path.isdir(path) 用于判断path是否为目录,若是目录,返回True,否则返回False。
> import os > filepath=r'C:\Program Files (x86)\Google\Chrome\Application\VisualElementsManifest.xml' > os.path.isdir(filepath) False > os.path.isfile(filepath) True
4. os.remove(path)
删除指定文件。无论文件是否是空,都可以删除。
注意:这个函数只能删除文件,不能删除目录,否则会报错。
> import os > os.removedirs(r'c:\temp\david\book\python.txt')
5. shutil.rmtree(path)
如果目录中有文件和目录,也就是说一个目录中不管有多少子目录,这些子目录里面不管有多少目录和文件。
我想删除这个上层目录(注意:是删除这个目录及其这个目录中的所有文件和目录)。
如何做呢?
就需要使用shutil模块中的rmtree()函数。
> import shutil > shutil.rmtree(r'C:\no1')
以上这篇Python对文件和目录进行操作的方法(file对象/os/os.path/shutil 模块)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
python,os,shutil
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]