Python常用模块——文件复制模块shutil
2020-12-13 16:37
标签:add 注意 pytho XML shutil 移动文件 log 否则 test 高级的文件、文件夹、压缩包处理模块 将文件内容拷贝到另一个文件中 拷贝文件 仅拷贝权限。内容、组、用户均不变 仅拷贝状态的信息,包括:mode bits, atime, mtime, flags 拷贝文件和权限 拷贝文件和状态信息 递归的去拷贝文件夹 递归的去删除文件 递归的去移动文件,它类似mv命令,其实就是重命名。 创建压缩包并返回文件路径,例如:zip、tar 可选参数如下: shutil 对压缩包的处理是调用 ZipFile 和 TarFile 两个模块来进行的,详细: zipfile压缩&解压缩 tarfile压缩&解压缩 Python常用模块——文件复制模块shutil 标签:add 注意 pytho XML shutil 移动文件 log 否则 test 原文地址:https://www.cnblogs.com/Kwan-C/p/11620852.htmlPython常用模块——文件复制模块shutil
shutil模块
shutil.copyfileobj(fsrc, fdst)
import shutil
shutil.copyfileobj(open('old.xml','r'), open('new.xml', 'w'))
shutil.copyfile(src, dst)
shutil.copyfile('f1.log', 'f2.log') #目标文件无需存在
shutil.copymode(src, dst)
shutil.copymode('f1.log', 'f2.log') #目标文件必须存在
shutil.copystat(src, dst)
shutil.copystat('f1.log', 'f2.log') #目标文件必须存在
shutil.copy(src, dst)
import shutil
shutil.copy('f1.log', 'f2.log')
shutil.copy2(src, dst)
import shutil
shutil.copy2('f1.log', 'f2.log')
shutil.ignore_patterns(*patterns)
shutil.copytree(src, dst, symlinks=Flase, ignore=None)
import shutil
shutil.copytree('folder1', 'folder2', ignore=shutil.ignore_patterns('*.pyc', 'tmp*')) #目标目录不能存在,注意对folder2目录父级目录要有可写权限,ignore的意思是排除
shutil.rmtree(path[,ignore_errors[,onerror]])
import shutil
shutil.rmtree('folder1')
shutil.move(src, dst)
import shutil
shutil.move('folder1', 'folder3')
shutil.make_archive(base_name, format, ...)
如 data\_bak =>保存至当前路径
如:/tmp/data\_bak =>保存至/tmp/
#将 /data 下的文件打包放置当前程序目录
import shutil
ret = shutil.make_archive("data_bak", 'gztar', root_dir='/data')
#将 /data下的文件打包放置 /tmp/目录
import shutil
ret = shutil.make_archive("/tmp/data_bak", 'gztar', root_dir='/data')
import zipfile
# 压缩
z = zipfile.ZipFile('laxi.zip', 'w')
z.write('a.log')
z.write('data.data')
z.close()
# 解压
z = zipfile.ZipFile('laxi.zip', 'r')
z.extractall(path='.')
z.close()
import tarfile
# 压缩
t=tarfile.open('/tmp/egon.tar','w')
t.add('/test1/a.py',arcname='a.bak')
t.add('/test1/b.py',arcname='b.bak')
t.close()
# 解压
t=tarfile.open('/tmp/egon.tar','r')
t.extractall('/egon')
t.close()