Как скопировать опубликованный файл на диск?
Могу ли я сделать что-то вроде:
file = '/uploaded_files/test.txt' shutil.copy2(request.POST['file'],file)
Спасибо.
Вы делаете что-то вроде этого:
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)