使用程序在电脑D盘下创建students文件夹,并在students文件夹下创建 Java文件夹和Android 文件夹,在这两个文件夹下各创建一个 student.txt文件。
时间: 2023-05-28 11:06:28 浏览: 280
student.zip_student.txt
这是一个Python实现的示例代码:
```python
import os
# 创建students文件夹
students_dir = 'D:/students'
if not os.path.exists(students_dir):
os.makedirs(students_dir)
# 在Java文件夹下创建student.txt文件
java_dir = os.path.join(students_dir, 'Java')
if not os.path.exists(java_dir):
os.makedirs(java_dir)
student_java_file = os.path.join(java_dir, 'student.txt')
with open(student_java_file, 'w') as f:
f.write('This is student.txt in Java folder.')
# 在Android文件夹下创建student.txt文件
android_dir = os.path.join(students_dir, 'Android')
if not os.path.exists(android_dir):
os.makedirs(android_dir)
student_android_file = os.path.join(android_dir, 'student.txt')
with open(student_android_file, 'w') as f:
f.write('This is student.txt in Android folder.')
```
运行这段代码后,就能在D盘下的students文件夹中看到Java和Android两个子文件夹,并且在这两个文件夹下分别有一个名为student.txt的文件。
阅读全文