Python基础五--shutil模块

Posted gangzi4321

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础五--shutil模块相关的知识,希望对你有一定的参考价值。

高级文件处理模块:

  a. 简单文件操作:

  1. 将文件内容cope到另一个文件中:shutil.copyfileobj(open(‘test_t.txt‘,‘r‘),ope(‘test.txt‘,‘a‘));

  2. cope文件:shutil.copefile(‘test.txt‘,‘test_t.txt‘);

  3. cope权限:shutil.copymode(‘test.txt‘,‘test_t.txt‘);

  4. cope状态信息:shutil.copystat(‘test.txt‘,‘test_t.txt‘);

  5. cope文件和权限:shutil.copy(‘test.txt‘,‘test_t.txt‘);

  6. cope文件和状态信息:shutil.copy2(‘test.txt‘,‘test_t.txt‘)

  7. cope文件包忽略编译文件和临时文件:shutil.copytree(‘shutil_test‘,‘test‘,ignore=shutil.ignore_patterns(‘*.pyc‘,‘tmp*‘));

  8. 递归的删除文件:shutil.rmtree(‘test‘);

  9. 移动整个文件目录和文件:shutil.move(‘random_test‘,‘shutil_test‘);

  b. 文件压缩操作:

  1. shutil.make_archive(base_name,format,root_dir...) 

    [ ret2 = shutil.make_archive("/tmp_test/data_bak", ‘zip‘, root_dir=‘/data1‘) # 将 /data1下的文件打包放置 /tmp_test/目录下 ];

  ---> base_name:压缩包的名称、路径;

  --->format:‘zip’/‘tar‘/bztar‘/‘gztar‘;

  --->root_dir:要压缩的文件路径(默认当前目录);

以上是关于Python基础五--shutil模块的主要内容,如果未能解决你的问题,请参考以下文章

python基础-shutil模块

Python 基础 - 4.6 shutil 模块

python基础学习shutil高级的文件,目录,压缩包处理模块

python基础--常用模块

Python学习笔记——基础篇第六周——shutil模块

python基础 sys shutile shelve模块