あなたの特定のアプリケーションはpythoncgiモジュールで使用するためのものであるとあなたが言ったので、簡単なグーグルはたくさんの例を見つけます。これが最初のものです:
最小限のhttpアップロードcgi(Pythonレシピ)(snip)
def save_uploaded_file (form_field, upload_dir):
"""This saves a file uploaded by an HTML form.
The form_field is the name of the file input field from the form.
For example, the following form_field would be "file_1":
<input name="file_1" type="file">
The upload_dir is the directory where the file will be written.
If no file was uploaded or if the field does not exist then
this does nothing.
"""
form = cgi.FieldStorage()
if not form.has_key(form_field): return
fileitem = form[form_field]
if not fileitem.file: return
fout = file (os.path.join(upload_dir, fileitem.filename), 'wb')
while 1:
chunk = fileitem.file.read(100000)
if not chunk: break
fout.write (chunk)
fout.close()
このコードは、ファイルのようなオブジェクトになるファイル入力フィールドを取得します。次に、それをチャンクごとに出力ファイルに読み込みます。
アップデート04/12/15:コメントごとに、この古いactivestateスニペットのアップデートに追加しました:
import shutil
def save_uploaded_file (form_field, upload_dir):
form = cgi.FieldStorage()
if not form.has_key(form_field): return
fileitem = form[form_field]
if not fileitem.file: return
outpath = os.path.join(upload_dir, fileitem.filename)
with open(outpath, 'wb') as fout:
shutil.copyfileobj(fileitem.file, fout, 100000)