我可以保存文件到一个usb驱动器在python [关闭]

ruoxqz4g  于 2023-10-21  发布在  Python
关注(0)|答案(1)|浏览(107)

**已关闭。**此问题不符合Stack Overflow guidelines。它目前不接受回答。

这个问题似乎不是关于在help center定义的范围内编程。
2天前关闭。
Improve this question
我正试图为我的奶奶做一个食谱数据库,我想学习如何保存食谱到SD卡。

tquggr8v

tquggr8v1#

你需要使用open方法,见下文

with open(usb_drive_location, "wb+") as file_obj:
    file_obj.write(uploaded_file.file.read())

只要加上你的usb_drive_location,你就好了。

相关问题