百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 热门文章 > 正文

Python类库shutil

bigegpt 2024-08-31 16:39 5 浏览

shutil是Python内置的模块,提供了高级文件操作功能,支持复制、移动、删除、压缩、解压缩等操作。

  1. 复制文件到目标目录
import shutil

src_file = 'path/to/source/file'
dst_dir = 'path/to/destination/dir'

shutil.copy(src_file, dst_dir)
  1. 复制文件并重命名
import shutil

src_file = 'path/to/source/file'
dst_dir = 'path/to/destination/dir/new_name.txt'

shutil.copy(src_file, dst_dir)
  1. 复制整个目录
import shutil

src_dir = 'path/to/source/dir'
dst_dir = 'path/to/destination/dir'

shutil.copytree(src_dir, dst_dir)
  1. 移动文件到目标目录
import shutil

src_file = 'path/to/source/file'
dst_dir = 'path/to/destination/dir'

shutil.move(src_file, dst_dir)
  1. 移动文件并重命名
import shutil
import os

src_file = 'path/to/source/file'
dst_dir = 'path/to/destination/dir/new_name.txt'

if os.path.isfile(dst_dir):
    os.remove(dst_dir)

shutil.move(src_file, dst_dir)
  1. 移动整个目录
import shutil

src_dir = 'path/to/source/dir'
dst_dir = 'path/to/destination/dir'

shutil.move(src_dir, dst_dir)
  1. 删除文件
import os

file_path = 'path/to/file'

os.remove(file_path)
  1. 删除目录
import shutil

dir_path = 'path/to/dir'

shutil.rmtree(dir_path)
  1. 压缩单个文件
import shutil

file_path = 'path/to/file'
zip_path = 'path/to/archive.zip'

shutil.make_archive(zip_path, 'zip', file_path)
  1. 压缩整个目录
import shutil

dir_path = 'path/to/dir'
zip_path = 'path/to/archive.zip'

shutil.make_archive(zip_path, 'zip', dir_path)
  1. 解压缩zip文件
import shutil

zip_path = 'path/to/archive.zip'
dst_path = 'path/to/destination/dir'

shutil.unpack_archive(zip_path, dst_path)
  1. 文件比较
import filecmp

file_path1 = 'path/to/file1'
file_path2 = 'path/to/file2'

result = filecmp.cmp(file_path1, file_path2)

if result:
    print('文件一致')
else:
    print('文件不一致')
  1. 文件差异比较
import difflib

file_path1 = 'path/to/file1'
file_path2 = 'path/to/file2'

with open(file_path1) as f1:
    with open(file_path2) as f2:
        diff = difflib.unified_diff(f1.readlines(), f2.readlines())

        for line in diff:
            print(line)
  1. 目录比较
import filecmp

dir_path1 = 'path/to/dir1'
dir_path2 = 'path/to/dir2'

dcmp = filecmp.dircmp(dir_path1, dir_path2)

print('只存在一个目录中的文件:')
print(dcmp.left_only)
print(dcmp.right_only)

print('不同内容的文件:')
print(dcmp.diff_files)

print('相同内容但不同名的文件:')
print(dcmp.common_crc)

print('子目录的差异:')
print(dcmp.subdirs)
  1. 拷贝整个目录并排除某些文件或目录
import shutil

src_dir = 'path/to/src/dir'
dst_dir = 'path/to/dst/dir'

exclude_files = ['*.log', '*.out']
exclude_dirs = ['temp']

shutil.copytree(src_dir, dst_dir, ignore=shutil.ignore_patterns(*exclude_files, *exclude_dirs))
  1. 移动某个目录并排除某些文件或目录
import shutil

src_dir = 'path/to/src/dir'
dst_dir = 'path/to/dst/dir'

exclude_files = ['*.log', '*.out']
exclude_dirs = ['temp']

shutil.move(src_dir, dst_dir, ignore=shutil.ignore_patterns(*exclude_files, *exclude_dirs))
  1. 递归复制文件夹并覆盖
import shutil

src_dir = 'path/to/src/dir'
dst_dir = 'path/to/dst/dir'

shutil.rmtree(dst_dir)
shutil.copytree(src_dir, dst_dir)
  1. 拷贝单个目录所有内容到另一个目录下的指定子目录中
import shutil

src_dir = 'path/to/src/dir'
dst_dir = 'path/to/dst/dir'
sub_dir = 'subdir'

shutil.copytree(src_dir, os.path.join(dst_dir, sub_dir))
  1. 复制目录但是不复制空目录
import os
import shutil

src_dir = 'path/to/src/dir'
dst_dir = 'path/to/dst/dir'

for root, dirs, files in os.walk(src_dir):
    for file in files:
        src_file = os.path.join(root, file)
        rel_path = os.path.relpath(src_file, src_dir)
        dst_file = os.path.join(dst_dir, rel_path)

        if not os.path.exists(os.path.dirname(dst_file)):
            os.makedirs(os.path.dirname(dst_file))

        shutil.copy2(src_file, dst_file)

注意事项

  • shutil操作会直接影响源文件,应该谨慎使用。
  • 使用shutil.copytree()复制目录时需要注意目标目录必须不存在,否则会抛出异常。
  • 可以使用shutil.ignore_patterns()或shutil.ignore_function()来忽略某些文件或文件夹。

相关推荐

Java 泛型大揭秘:类型参数、通配符与最佳实践

引言在编程世界中,代码的可重用性和可维护性是至关重要的。为了实现这些目标,Java5引入了一种名为泛型(Generics)的强大功能。本文将详细介绍Java泛型的概念、优势和局限性,以及如何在...

K8s 的标签与选择器:流畅运维的秘诀

在Kubernetes的世界里,**标签(Label)和选择器(Selector)**并不是最炫酷的技术,但却是贯穿整个集群管理与运维流程的核心机制。正是它们让复杂的资源调度、查询、自动化运维变得...

哈希Hash算法:原理、应用(哈希算法 知乎)

原作者:Linux教程,原文地址:「链接」什么是哈希算法?哈希算法(HashAlgorithm),又称为散列算法或杂凑算法,是一种将任意长度的数据输入转换为固定长度输出值的数学函数。其输出结果通常被...

C#学习:基于LLM的简历评估程序(c# 简历)

前言在pocketflow的例子中看到了一个基于LLM的简历评估程序的例子,感觉还挺好玩的,为了练习一下C#,我最近使用C#重写了一个。准备不同的简历:image-20250528183949844查...

55顺位,砍41+14+3!季后赛也成得分王,难道他也是一名球星?

雷霆队最不可思议的新星:一个55号秀的疯狂逆袭!你是不是也觉得NBA最底层的55号秀,就只能当饮水机管理员?今年的55号秀阿龙·威金斯恐怕要打破你的认知了!常规赛阶段,这位二轮秀就像开了窍的天才,直接...

5分钟读懂C#字典对象(c# 字典获取值)

什么是字典对象在C#中,使用Dictionary类来管理由键值对组成的集合,这类集合被称为字典。字典最大的特点就是能够根据键来快速查找集合中的值,其键的定义不能重复,具有唯一性,相当于数组索引值,字典...

c#窗体传值(c# 跨窗体传递数据)

在WinForm编程中我们经常需要进行俩个窗体间的传值。下面我给出了两种方法,来实现传值一、在输入数据的界面中定义一个属性,供接受数据的窗体使用1、子窗体usingSystem;usingSyst...

C#入门篇章—委托(c#委托的理解)

C#委托1.委托的定义和使用委托的作用:如果要把方法作为函数来进行传递的话,就要用到委托。委托是一个类型,这个类型可以赋值一个方法的引用。C#的委托通过delegate关键字来声明。声明委托的...

C#.NET in、out、ref详解(c#.net framework)

简介在C#中,in、ref和out是用于修改方法参数传递方式的关键字,它们决定了参数是按值传递还是按引用传递,以及参数是否必须在传递前初始化。基本语义对比修饰符传递方式可读写性必须初始化调用...

C#广义表(广义表headtail)

在C#中,广义表(GeneralizedList)是一种特殊的数据结构,它是线性表的推广。广义表可以包含单个元素(称为原子),也可以包含另一个广义表(称为子表)。以下是一个简单的C#广义表示例代...

「C#.NET 拾遗补漏」04:你必须知道的反射

阅读本文大概需要3分钟。通常,反射用于动态获取对象的类型、属性和方法等信息。今天带你玩转反射,来汇总一下反射的各种常见操作,捡漏看看有没有你不知道的。获取类型的成员Type类的GetMembe...

C#启动外部程序的问题(c#怎么启动)

IT&OT的深度融合是智能制造的基石。本公众号将聚焦于PLC编程与上位机开发。除理论知识外,也会结合我们团队在开发过程中遇到的具体问题介绍一些项目经验。在使用C#开发上位机时,有时会需要启动外部的一些...

全网最狠C#面试拷问:这20道题没答出来,别说你懂.NET!

在竞争激烈的C#开发岗位求职过程中,面试是必经的一道关卡。而一场高质量的面试,不仅能筛选出真正掌握C#和.NET技术精髓的人才,也能让求职者对自身技术水平有更清晰的认知。今天,就为大家精心准备了20道...

C#匿名方法(c#匿名方法与匿名类)

C#中的匿名方法是一种没有名称只有主体的方法,它提供了一种传递代码块作为委托参数的技术。以下是关于C#匿名方法的一些重要特点和用法:特点省略参数列表:使用匿名方法可省略参数列表,这意味着匿名方法...

C# Windows窗体(.Net Framework)知识总结

Windows窗体可大致分为Form窗体和MDI窗体,Form窗体没什么好细说的,知识点总结都在思维导图里面了,下文将围绕MDI窗体来讲述。MDI(MultipleDocumentInterfac...