如何将发布的文件复制到磁盘?
我可以这样做:
file = '/uploaded_files/test.txt'
shutil.copy2(request.POST['file'],file)
感谢。
答案 0 :(得分:1)
你做这样的事情:
tempfile = request.POST['file']
file_path = 'uploaded_files/' + tempfile.filename # for the original filename
permanent_file = open( file_path, 'wb')
shutil.copyfileobj(tempfile.file, permanent_file)