编程实现:在D盘下,创建一个名为“my_files”的文件夹,并在其中创建一个名为“file1.txt”的文本文件。
时间: 2024-02-09 16:10:01 浏览: 141
以下是使用Python编程实现在D盘下创建名为“my_files”的文件夹,并在其中创建名为“file1.txt”的文本文件的代码:
```python
import os
# 指定文件夹路径
folder_path = 'D:/my_files'
try:
# 判断文件夹是否存在,如果不存在则创建
if not os.path.exists(folder_path):
os.mkdir(folder_path)
print("文件夹创建成功!")
else:
print("文件夹已经存在!")
# 在文件夹中创建文本文件
file_path = os.path.join(folder_path, 'file1.txt')
with open(file_path, 'w') as f:
f.write("This is a test file.")
print("文本文件创建成功!")
except Exception as e:
print("出现错误:", e)
```
运行以上代码后,D盘下就会创建一个名为“my_files”的文件夹,并在其中创建一个名为“file1.txt”的文本文件。
阅读全文