标签:python 包括 编程 move 遍历文件 进一步 extra 压缩文件 source
上一章节,主要讲了如何用 Python 进行创建并写入新文件。这一章节,讲了对如何用 Python 对文件进行进一步的操作,包括:
模块:shutil 模块的一些函数,具有复制,移动,删除文件的。
shutil 指的是 shell untility( shell 工具)
复制文件和文件夹:shutil.copy(source,destination)
移动:shutil.move(source,destination)
使用 os.walk() 函数:这个函数接受一个文件夹路径的字符串值,然后返回三个值:
模块:import send2trash
调用:send2trash.send2trash("filename")
模块: import zipfile
创建 ZipFIle 对象:zipfile.ZipFile("path")
ZipFile 对象的一些方法:
标签:python 包括 编程 move 遍历文件 进一步 extra 压缩文件 source
原文地址:https://www.cnblogs.com/FBsharl/p/10230941.html