python 创建文件并创建文件夹
时间: 2023-10-18 17:16:11 浏览: 217
创建文件夹
在 Python 中创建文件和文件夹可以使用 `os` 模块和 `os.path` 模块。
首先,我们需要导入这两个模块:
```python
import os
import os.path
```
创建文件夹可以使用 `os.mkdir()` 函数,代码如下:
```python
folder_path = '/path/to/folder'
if not os.path.exists(folder_path):
os.mkdir(folder_path)
```
其中,`folder_path` 是要创建的文件夹的路径。`os.path.exists()` 函数用于判断该文件夹是否已经存在,如果不存在则创建该文件夹。
创建文件可以使用 `open()` 函数,代码如下:
```python
file_path = '/path/to/file.txt'
with open(file_path, 'w') as f:
f.write('hello world')
```
其中,`file_path` 是要创建的文件的路径,`'w'` 表示以写入模式打开文件。`with` 语句用于自动关闭文件。在 `with` 语句块中,使用 `f.write()` 函数向文件中写入内容。
阅读全文