web-dev-qa-db-ja.com

ボトルフレームワークを使用してファイルをアップロードおよび保存する方法

HTML:

<form action="/upload" method="post" enctype="multipart/form-data">
  Category:      <input type="text" name="category" />
  Select a file: <input type="file" name="upload" />
  <input type="submit" value="Start upload" />
</form>

見る:

@route('/upload', method='POST')
def do_login():
    category   = request.forms.get('category')
    upload     = request.files.get('upload')
    name, ext = os.path.splitext(upload.filename)
    if ext not in ('png','jpg','jpeg'):
        return 'File extension not allowed.'

    save_path = get_save_path_for_category(category)
    upload.save(save_path) # appends upload.filename automatically
    return 'OK'

このコードを実行しようとしていますが、機能していません。私が間違っているのは何ですか?

18

bottle-0.12から開始FileUploadクラスは、そのupload.save()機能で実装されました。

Bottle-0.12の例を次に示します。

import os
from bottle import route, request, static_file, run

@route('/')
def root():
    return static_file('test.html', root='.')

@route('/upload', method='POST')
def do_upload():
    category = request.forms.get('category')
    upload = request.files.get('upload')
    name, ext = os.path.splitext(upload.filename)
    if ext not in ('.png', '.jpg', '.jpeg'):
        return "File extension not allowed."

    save_path = "/tmp/{category}".format(category=category)
    if not os.path.exists(save_path):
        os.makedirs(save_path)

    file_path = "{path}/{file}".format(path=save_path, file=upload.filename)
    upload.save(file_path)
    return "File successfully saved to '{0}'.".format(save_path)

if __name__ == '__main__':
    run(Host='localhost', port=8080)

注:os.path.splitext()関数は、「<ext>」ではなく「。<ext>」形式で拡張子を付けます。

  • Bottle-0.12より前のバージョンを使用している場合は、以下を変更します。

    ...
    upload.save(file_path)
    ...
    

に:

    ...
    with open(file_path, 'wb') as open_file:
        open_file.write(upload.file.read())
    ...
  • サーバーを実行します。
  • ブラウザに「localhost:8080」と入力します。
31
Stanislav