如何使用python将文件描述符保存在文件夹中?

时间:2017-05-18 16:09:33

标签: python

我上传了一个文件,到python函数,现在我有文件名和文件描述符,我想把它保存到另一个本地文件夹(linux)

我测试了这段代码,但我保存的文件是空的:

filename = request.POST['file'].filename #file descriptor
input_file = request.POST['file'].file # file name

path = "/new_folder"
fullpath = os.path.join(path, filename)
file = open(fullpath, "w")
file.close()  

你能帮忙吗?

1 个答案:

答案 0 :(得分:0)

我发现了怎么做

我错过了这一部分:

with open(fullpath,"w") as fw :
        fw.writelines(input_file.readlines())

无论如何,谢谢你们:)