request.form["file"] からファイルに書き込みたいのですが、できません。
私の contact.html はこちらです。
クライアント側のコードはこのようなものです...
<form action="contact" method="POST" enctype="multipart/form-data">
<input type="file" name="file">
<input type="submit" value="submit">
</form>
サーバーサイドはこんな感じ
filestorage = request.files["file"]
print type(_file) #-> <FileStorage: u"__proto.png" ("img/png")>
# I tried below this , but it doesn't work.
f = open("tmp.png","wb")
f.write(filestorage)
これをpngファイルであるアップロードファイルに書きたいと思います。何か考えはありますか?
前もって感謝します。