python中shutil和shutil库的用法

一、shutil目录和文件操作

Python shutil库提供了对文件和目录复制、移动、删除、压缩、解压等操作。

1. 复制文件或目录

  • shutil.copy(src, dst):复制文件或目录
  • shutil.copyfile(src, dst):复制文件,src和dst只能是文件
  • shutil.copytree(src, dst, dirs_exist_ok=False):复制目录,默认dst目录不存在,否则会报错。

示例:

import os
import shutil

dirpath    = os.path.dirname(os.path.realpath(__file__))
sourcedir  = os.path.join(dirpath, "shutil_a")
sourcefile = os.path.join(dirpath, "shutil_a", "test.txt")        
destdir    = os.path.join(dirpath, "shutil_b")
destfile   = os.path.join(dirpath, "shutil_b", "test2.txt")
# 复制文件或目录
shutil.copy(sourcefile, destdir)        
# 复制文件
shutil.copyfile(sourcefile, destfile) 
# 复制目录
shutil.copytree(sourcedir, destfile, dirs_exist_ok=True) 

2. 移动文件或目录

语法:shutil.move(src, dst)

示例:

import os
import shutil

dirpath    = os.path.dirname(os.path.realpath(__file__))
sourcedir  = os.path.join(dirpath, "shutil_a")
sourcefile = os.path.join(dirpath, "shutil_a", "test.txt")        
destdir    = os.path.join(dirpath, "shutil_b")
shutil.move(sourcefile, destdir)
shutil.move(destdir, sourcedir)

3. 删除文件和目录

删除某个文件使用 os 模块提供的remove和unlink方法:

  • os.remove(path)
  • os.unlink(path)

删除目录使用 shutil.rmtree 方法:

import os
import shutil

dirpath    = os.path.dirname(os.path.realpath(__file__))     
destdir    = os.path.join(dirpath, "shutil_b")
shutil.rmtree(destdir)

二、shutil文件压缩、解压

shutil库也支持文件压缩、解压操作,这个功能在Python 3.2版本引入。

1. 压缩文件

语法格式:

shutil.make_archive(base_name, format[, root_dir[, base_dir[, verbose[, dry_run[, owner[, group[, logger]]]]]]])
  • base_name:压缩包文件名
  • format:压缩包格式,支持zip,tar,bztar,gztar,xztar格式,可使用shutil.get_archive_formats()方法查看
  • root_dir:要压缩文件路径的根目录(默认当前目录)
  • base_dir:相对于root_dir的压缩文件路径(默认当前目录)

示例:

import os
import shutil
#Python小白学习交流群:725638078
dirpath    = os.path.dirname(os.path.realpath(__file__))
archive_name  = os.path.join(dirpath, "shutil_a")
root_dir = archive_name
shutil.make_archive(archive_name, 'zip', root_dir)

2. 解压文件

语法格式:

shutil.unpack_archive(filename[, extract_dir[, format]])

示例:

import os
import shutil

dirpath      = os.path.dirname(os.path.realpath(__file__))
archive_name = os.path.join(dirpath, "shutil_a.zip")
extract_dir  = os.path.join(dirpath, "shutil_a")   
shutil.unpack_archive(archive_name, extract_dir, 'zip')

原文链接:https://www.cnblogs.com/xxpythonxx/p/17298705.html

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python中shutil和shutil库的用法 - Python技术站

(0)
上一篇 2023年4月18日
下一篇 2023年4月18日

相关文章

  • 我似乎无法在 python 中找到前面零的正确格式规范

    【问题标题】:I cannot seem to find the correct formatting spec for preceding zeroes in python我似乎无法在 python 中找到前面零的正确格式规范 【发布时间】:2023-04-02 04:08:01 【问题描述】: 加小数的时候,就这么简单 john = 2 johnmod …

    Python开发 2023年4月8日
    00
  • OpenCV每日函数之BarcodeDetector类条码检测器

    OpenCV每日函数之BarcodeDetector类条码检测器 简介 BarcodeDetector是OpenCV中的一个类,用于检测图像中的条形码(一维码)和二维码。它采用了特定的算法,可以在图像中检测出任何类型的1D或2D码,包括QR码、DataMatrix码、Code 39等。这个类非常适用于自动化识别和读取条码信息。 使用方法 使用BarcodeD…

    python 2023年6月6日
    00
  • Python多版本开发环境管理工具介绍

    Python多版本开发环境管理工具介绍 Python是一门非常流行的编程语言,目前的Python版本主要有Python2和Python3两个系列,但不同版本之间存在不兼容的问题,所以在进行Python开发时需要考虑到不同版本的兼容性问题。本文将介绍Python的多版本开发环境管理工具,让你能够轻松地在不同Python版本间切换。 1. virtualenv …

    python 2023年5月14日
    00
  • python对两个数组进行合并排列处理的两种方法

    我来详细讲解一下“Python对两个数组进行合并排列处理的两种方法”。 方法一:使用内置函数sorted() 使用Python内置函数sorted()可以进行对两个数组进行合并排列处理。具体步骤如下: 首先将两个数组合并为一个新的数组用 ‘+’ 号连接。 对新的数组使用sorted()函数进行排序,得到排列后的新数组。 示例: a = [12, 5, 6, …

    python 2023年6月6日
    00
  • Python学习之函数 def

    Python学习之函数 def 函数是Python中最重要的编程概念之一,它可以让程序员把一组重复的代码块封装在一起,并且可以通过函数名来调用这组代码。在Python中,使用def关键字来定义函数。 定义函数 定义函数的语法如下所示: def 函数名(参数列表): 函数体 return 返回值 其中: 函数名指定了函数的名称,函数名规范与变量名规范相同。 参…

    python 2023年6月5日
    00
  • 基于python编写的shell脚本详细讲解

    基于Python编写的Shell脚本详细讲解 什么是Shell脚本 Shell是Linux/Unix操作系统下的命令解释器,是用户与操作系统之间的接口。Shell脚本就是在这个解释器中使用Shell语言编写的可执行脚本文件。Shell脚本可以实现系统自动化任务、软件安装部署、文件管理等一系列操作,提高了工作效率并减少了人为操作出错的风险。 Python中执行…

    python 2023年6月3日
    00
  • pandas 实现字典转换成DataFrame的方法

    当我们需要对字典进行分析和处理时,可以使用pandas库中的DataFrame对象来处理。pandas实现字典转换成DataFrame的方法分为以下几步: 1. 创建字典 首先,我们需要按照一定的格式创建字典,例如下面的代码创建了一个字典data: data = {‘name’: [‘Alice’, ‘Bob’, ‘Charlie’], ‘age’:[25,…

    python 2023年5月13日
    00
  • Python编程基础之字典

    Python编程基础之字典 什么是字典? 字典是Python中的一种数据结构,用于存储键值对。每个键(key)对应一个值(value),键和值之间使用冒号进行分割,键值对之间使用逗号进行分隔。字典是无序排列的,并且键必须是唯一的。 字典的定义 可以使用以下语法来定义一个字典: my_dict = {key1: value1, key2: value2, ke…

    python 2023年5月13日
    00
合作推广
合作推广
分享本页
返回顶部