python 如何将文件写入到指定文件夹中
时间: 2024-03-05 07:47:59 浏览: 130
python实现复制文件到指定目录
5星 · 资源好评率100%
要文件写入到指定文件夹中,您可以使用Python的`os`和`shutil`模块。
以下是一个示例代码:
```python
import os
import shutil
source_file = '/path/to/source/file.txt'
destination_folder = '/path/to/destination/folder'
if not os.path.exists(destination_folder):
os.makedirs(destination_folder)
shutil.copy(source_file, destination_folder)
```
在这个例子中,我们首先指定了源文件的路径`source_file`和目标文件夹的路径`destination_folder`。然后我们使用`os.makedirs()`函数创建目标文件夹(如果它不存在)。最后,我们使用`shutil.copy()`函数将源文件复制到目标文件夹中。
请注意,`shutil.copy()`函数将复制源文件并将其放置在目标文件夹中。如果您希望移动源文件而不是复制它,请使用`shutil.move()`函数。
阅读全文