文件夹的增删查改
查询\创建文件夹
def isexist(): '查询文件夹是否存在,如果不存在则创建' if not os.path.exists('测试'): os.mkdir('测试')
重命名文件夹
def renamedir(): '重命名文件夹' os.rename('测试','test')
移除文件夹
def removedir(): '移除文件夹' os.removedirs('测试')
文件的增删查改
查询\创建文件
def createfile(): '如果不存在study.txt,则创建文件' if not os.path.exists('study.txt'): with open('study.txt','w',encoding='utf-8') as f: pass
重命名文件
def deletefile(): '移除study.txt文件' os.remove('study.txt')
移除文件
def renamefile(): '重命名文件' os.rename('study.txt','test')
本文重在引入文件的基本操作,文件操作偏重于使用规则,故不再描述过多.更多使用详见官方文档https://docs.python.org/zh-cn/3.8/tutorial/index.html.见7.2章节…
在后续的项目开发中再着重谈及它的使用场景和使用技巧.