python文件、文件夹、压缩包处理模块-shutil模块

简介:

shutil模块 高级的文件、文件夹、压缩包 处理模块


本节内容基本在linux下python交互环境实现

复制移动文件、文件夹


将文件内容拷贝到另一个文件中,可以部分内容

格式如下:
```
shutil.copyfileobj(fsrc, fdst[, length])
```
源代码如下:
```
def copyfileobj(fsrc, fdst, length=16*1024):
        """copy data from file-like object fsrc to file-like object fdst"""
        while 1:
                buf = fsrc.read(length)
                if not buf:
                        break
                fdst.write(buf)
```

拷贝文件

shutil.copyfile(src, dst)
shutil.copyfile("shell.py","/usr/local/src/shell.py")

例子:
import shutil
f1 = open("file1",encoding="utf-8")
f2 = open("file2","w")
shutil.copyfileobj(f1,f2)

#等于下面的一句
shutil.copyfile("file2","file3")

仅拷贝权限、内容、组、用户均不变

shutil.copymode(src, dst)
如:
>>> os.system("ls -lh /usr/local/src/shell.py")
-rwxrwxrwx 1 ftp ftp 5.0K 1122 15:15 /usr/local/src/shell.py
0
>>> shutil.copymode("shell.py","/usr/local/src/shell.py")
>>> os.system("ls -lh /usr/local/src/shell.py")
-rwxr--r-- 1 ftp ftp 5.0K 1122 15:15 /usr/local/src/shell.py

拷贝状态的信息,包括:mode bits, atime, mtime, flags

shutil.copystat(src, dst)

拷贝文件和权限

shutil.copy(src, dst)
源代码如下:
def copy(src, dst):
        """Copy data and mode bits ("cp src dst").

        The destination may be a directory.

        """
        if os.path.isdir(dst):
                dst = os.path.join(dst, os.path.basename(src))
        copyfile(src, dst)
        copymode(src, dst)

拷贝文件和状态信息

shutil.copy2(src, dst)
源代码如下:
def copy2(src, dst):
        """Copy data and all stat info ("cp -p src dst").

        The destination may be a directory.

        """
        if os.path.isdir(dst):
                dst = os.path.join(dst, os.path.basename(src))
        copyfile(src, dst)
        copystat(src, dst)          

递归的去拷贝文件

shutil.ignore_patterns(*patterns)
shutil.copytree(src, dst, symlinks=False, ignore=None)
例如:copytree(source, destination, ignore=ignore_patterns('*.pyc', 'tmp*'))

递归的去删除文件

shutil.rmtree(path[, ignore_errors[, onerror]])
如:
>>> os.system("ls -lh abc/aa/bb/cc")
总用量 0
-rw-r--r-- 1 root root 0 1122 15:41 test.sh
0
>>> shutil.rmtree("abc")
>>> os.system("ls -lh abc/aa/bb/cc")
ls: 无法访问abc/aa/bb/cc: 没有那个文件或目录
512 

递归的去移动文件

shutil.move(src, dst)

打包文件、文件夹,压缩包处理


创建压缩包并返回文件路径,例如:zip、tar

语法:shutil.make_archive(base_name, format,...)
base_name: 压缩包的文件名,也可以是压缩包的路径。只是文件名时,则保存至当前目录,否则保存至指定路径,
                        如:www                        =>保存至当前路径
                        如:/Users/aaa/www =>保存至/Users/aaa/
format  :   压缩包种类,“zip”, “tar”, “bztar”,“gztar”
root_dir:   要压缩的文件夹路径(默认当前目录)
owner   :   用户,默认当前用户
group   :   组,默认当前组
logger  :   用于记录日志,通常是logging.Logger对象

将 /root/11 下的文件打包放置当前程序目录

>>> import shutil
>>> os.system("ls -lh ")
总用量 8.0K
drwxr-xr-x 3 root root   15 1122 15:52 11
-rwxr--r-- 1 root root 5.0K 724 08:49 shell.py
0
>>> shutil.make_archive("www","gztar",root_dir="/root/11")
'/root/www.tar.gz'
>>> os.system("ls -lh ")
总用量 12K
drwxr-xr-x 3 root root   15 1122 15:52 11
-rwxr--r-- 1 root root 5.0K 724 08:49 shell.py
-rw-r--r-- 1 root root  184 1122 15:54 www.tar.gz
0

将 /root/11 下的文件打包放置 /srv目录

>> import shutil
>> os.system("ls -lh /srv")
总用量 0
0
>> shutil.make_archive("/srv/www","gztar",root_dir="/root/11")
'/srv/www.tar.gz'
>> os.system("ls -lh /srv")
总用量 4.0K
-rw-r--r-- 1 root root 183 11月 22 15:59 www.tar.gz
0

shutil 对压缩包的处理是调用 ZipFile 和 TarFile 两个模块来进行的,详细:

zipfile 压缩解压

import zipfile
#压缩

>> import zipfile
>> z = zipfile.ZipFile("shell.zip","w")
>> z.write("shell.py")
>> z.close()
>> os.system("ls -lh ")
#解压
>> z = zipfile.ZipFile("shell.zip","r")
>> z.extractall() #可设置解压地址
>> z.close()

tarfile 压缩解压

#压缩

>> import tarfile
>> tar = tarfile.open("tar.tar","w")
>> tar.add("/root/shell.zip",arcname="shell.zip")
>> tar.add("/root/www.tar.gz",arcname="www.tar.gz")
>> tar.close()
#解压
>> tar = tarfile.open("tar.tar","r")
>> tar.extractall() #可设置解压地址
>> tar.close()


本文转自 506554897 51CTO博客,原文链接:

http://blog.51cto.com/506554897/2045806


相关文章
|
2天前
|
Java 程序员 开发者
Python的gc模块
Python的gc模块
|
5天前
|
数据采集 Web App开发 JavaScript
python-selenium模块详解!!!
Selenium 是一个强大的自动化测试工具,支持 Python 调用浏览器进行网页抓取。本文介绍了 Selenium 的安装、基本使用、元素定位、高级操作等内容。主要内容包括:发送请求、加载网页、元素定位、处理 Cookie、无头浏览器设置、页面等待、窗口和 iframe 切换等。通过示例代码帮助读者快速掌握 Selenium 的核心功能。
32 5
|
6天前
|
Python
SciPy 教程 之 SciPy 模块列表 13
SciPy教程之SciPy模块列表13:单位类型。常量模块包含多种单位,如公制、二进制(字节)、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例代码展示了如何使用`constants`模块获取零摄氏度对应的开尔文值(273.15)和华氏度与摄氏度的转换系数(0.5556)。
11 1
|
7天前
|
XML 前端开发 数据格式
超级详细的python中bs4模块详解
Beautiful Soup 是一个用于从网页中抓取数据的 Python 库,提供了简单易用的函数来处理导航、搜索和修改分析树。支持多种解析器,如 Python 标准库中的 HTML 解析器和更强大的 lxml 解析器。通过简单的代码即可实现复杂的数据抓取任务。本文介绍了 Beautiful Soup 的安装、基本使用、对象类型、文档树遍历和搜索方法,以及 CSS 选择器的使用。
22 1
|
8天前
|
Python
SciPy 教程 之 SciPy 模块列表 9
SciPy教程之常量模块介绍,涵盖多种单位类型,如公制、质量、角度、时间、长度、压强等。示例展示了如何使用`scipy.constants`模块查询不同压强单位对应的帕斯卡值,包括atm、bar、torr、mmHg和psi。
10 1
|
4天前
|
Python
SciPy 教程 之 SciPy 模块列表 16
SciPy教程之SciPy模块列表16 - 单位类型。常量模块包含多种单位,如公制、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例代码展示了力学单位的使用,如牛顿、磅力和千克力等。
8 0
|
5天前
|
JavaScript Python
SciPy 教程 之 SciPy 模块列表 15
SciPy 教程之 SciPy 模块列表 15 - 功率单位。常量模块包含多种单位,如公制、质量、时间等。功率单位中,1 瓦特定义为 1 焦耳/秒,表示每秒转换或耗散的能量速率。示例代码展示了如何使用 `constants` 模块获取马力值(745.6998715822701)。
8 0
|
5天前
|
JavaScript Python
SciPy 教程 之 SciPy 模块列表 15
SciPy教程之SciPy模块列表15:单位类型。常量模块包含多种单位,如公制、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。功率单位以瓦特(W)表示,1W=1J/s。示例代码展示了如何使用`constants`模块获取马力(hp)的值,结果为745.6998715822701。
10 0
|
6天前
|
Python
SciPy 教程 之 SciPy 模块列表 13
SciPy 教程之 SciPy 模块列表 13 - 单位类型。常量模块包含多种单位:公制、二进制(字节)、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例:`constants.zero_Celsius` 返回 273.15 开尔文,`constants.degree_Fahrenheit` 返回 0.5555555555555556。
9 0
|
7天前
|
Python
SciPy 教程 之 SciPy 模块列表 11
SciPy教程之SciPy模块列表11:单位类型。常量模块包含公制单位、质量单位、角度换算、时间单位、长度单位、压强单位、体积单位、速度单位、温度单位、能量单位、功率单位、力学单位等。体积单位示例展示了不同体积单位的换算,如升、加仑、流体盎司、桶等。
9 0