Как можно выгрузить несколько .zip файлов в Django. Я пытался пройтись циклом по request.FILE['file']
, но на выходе получаю байтовое представление.
def handler_file_form(request):
if request.method == 'POST':
for file in request.FILES['file']:
s = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'l', 'k', 'j', 'h', 'g', 'f', 'd', 's', 'a', 'z', 'x', 'c', 'v', 'b', 'n', 'm', 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', 'L', 'K', 'J', 'H', 'G', 'F', 'D', 'S', 'A', 'Z', 'X', 'C', 'V', 'B', 'N', 'M']
myfile = file
fs = FileSystemStorage()
code = ''.join([choice(s) for i in range(8)])
filename = fs.save(code, myfile)
file = Archive(name=code, file=f'/media/{code}')
file.save()
indexer = open('Passwords.txt', 'w')
indexer.write(request.user.indexer)
indexer.close()
with zipfile.ZipFile(code, 'a') as z:
z.write('Passwords.txt')
z.close()
os.remove('Passwords.txt')
return redirect('/upload_file')
return render(request, 'main/file_form.html', )