繁体   English   中英

如何将我的python文件保存在特定文件夹中

[英]How to save my python file in a particular folder

我想将我的文件保存在我已经在C:/python文件夹中创建的image文件夹中。 此代码将我的文件保存在Python文件夹中:

from flask import Flask, render_template, request
from werkzeug import secure_filename
app = Flask(__name__)

@app.route('/upload')
def load_file():
return render_template('upload.html')

@app.route('/uploader', methods = ['GET', 'POST'])
def upload_file():
if request.method == 'POST':
   f = request.files['file']
   f.save(secure_filename(f.filename))
   return 'file uploaded successfully'

 if __name__ == '__main__':
  app.run(debug = True)

html代码

  <form action = "http://localhost:5000/uploader" method = "POST" 
     enctype = "multipart/form-data">
     <input type = "file" name = "file" />
     <input type = "submit"/>
  </form>

您需要使用os.path.join添加要保存文件的完整路径。 只需阅读secure_filename的文档

http://werkzeug.pocoo.org/docs/0.14/utils/#werkzeug.utils.secure_filename

 from flask import Flask, render_template, request
 from werkzeug import secure_filename

 UPLOAD_FOLDER = '/path/to/the/uploads'
 ALLOWED_EXTENSIONS = set(['txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif'])

 app = Flask(__name__)
 app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
 import os, os.path


 APP_ROOT = os.path.dirname(os.path.abspath(__file__))
 UPLOAD_FOLD = '/python/image/'
 UPLOAD_FOLDER = os.path.join(APP_ROOT, UPLOAD_FOLD)
 app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER



@app.route('/upload')
def load_file():
return render_template('upload.html')

@app.route('/uploader', methods = ['GET', 'POST'])
def upload_file():
if request.method == 'POST':
  f = request.files['file']   
  f.save(os.path.join(app.config['UPLOAD_FOLDER'], secure_filename(f.filename)))
  return 'file uploaded successfully'

if __name__ == '__main__':
app.run(debug = True)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM