python删除特定目录下的文件和拷贝文件到指定目录
时间: 2024-04-23 07:27:45 浏览: 98
python实现复制文件到指定目录
5星 · 资源好评率100%
要删除特定目录下的文件,可以使用 `os` 模块中的 `os.remove()` 函数。这个函数可以删除指定路径下的文件。
```python
import os
# 删除特定目录下的文件
def delete_files_in_directory(directory):
for filename in os.listdir(directory):
file_path = os.path.join(directory, filename)
if os.path.isfile(file_path):
os.remove(file_path)
# 使用示例
delete_files_in_directory('/path/to/directory')
```
要拷贝文件到指定目录,可以使用 `shutil` 模块中的 `shutil.copy()` 函数。这个函数可以将文件从源位置复制到目标位置。
```python
import shutil
# 拷贝文件到指定目录
def copy_file_to_directory(source_file, destination_directory):
shutil.copy(source_file, destination_directory)
# 使用示例
copy_file_to_directory('/path/to/source/file', '/path/to/destination/directory')
```
请确保在使用这些代码之前,您已经正确安装了Python的标准库模块 `os` 和 `shutil`。
阅读全文