赞
踩
- import machine, os
-
- sd = machine.SDCard(slot=1)
- os.mount(sd, '/sd') # mount
-
- # 检查SD卡是否挂载
- if 'sd' in uos.listdir('/'):
- # 创建txt文件并写入数据
- filename = '/sd/data.txt' # 文件路径
-
- with open(filename, 'w') as file:
- file.write("Hello")
- print('成功在SD卡根目录创建了txt文件!')
- os.umount('/sd') # eject
- else:
- print('SD卡未加载或未正确挂载!')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。