python shutil模块
时间: 2023-08-23 09:05:39 浏览: 156
`shutil` 模块是 Python 中用于对文件和文件夹进行操作的标准库之一。它提供了一些简单而又强大的函数,使得文件和文件夹的复制、移动、删除等操作变得非常容易。
下面是一些常见的 `shutil` 模块中的函数及其用法:
1. `shutil.copy(src, dst)`:将文件从源路径复制到目标路径。如果目标路径是一个文件,则覆盖该文件;如果目标路径是一个目录,则在该目录下创建同名文件并复制。
```python
import shutil
src_path = "source_file.txt"
dst_path = "destination_file.txt"
shutil.copy(src_path, dst_path)
```
2. `shutil.copy2(src, dst)`:与 `shutil.copy()` 类似,但还会复制文件的元数据(如创建时间、修改时间等)。
```python
import shutil
src_path = "source_file.txt"
dst_path = "destination_file.txt"
shutil.copy2(src_path, dst_path)
```
3. `shutil.move(src, dst)`:将文件或目录从源路径移动到目标路径。如果目标路径是一个文件,则覆盖该文件;如果目标路径是一个目录,则在该目录下创建同名文件或目录并移动。
```python
import shutil
src_path = "source_file.txt"
dst_path = "destination_file.txt"
shutil.move(src_path, dst_path)
```
4. `shutil.rmtree(path)`:递归删除一个目录及其内容。
```python
import shutil
dir_path = "directory_to_delete"
shutil.rmtree(dir_path)
```
5. `shutil.make_archive(base_name, format, root_dir)`:创建一个压缩包,并返回压缩包的文件路径。`base_name` 是压缩包的文件名,`format` 是压缩包的格式(如 "zip"、"tar" 等),`root_dir` 是要打包的根目录。
```python
import shutil
dir_to_archive = "directory_to_archive"
archive_name = "archive"
archive_format = "zip"
shutil.make_archive(archive_name, archive_format, dir_to_archive)
```
以上是 `shutil` 模块中常用的一些函数,更多函数可以查看 Python 官方文档。
阅读全文