所以,我一直在尝试为我的代码添加图片上传器,但我一直在遇到问题。尽管我认为我已正确配置了upload_folder
,但即使文件/目录存在,我仍然会收到类似IOError: [Errno 2] No such file or directory: '/static/uploads/compressor.jpg'
的错误。
以下是代码:
UPLOAD_FOLDER = 'static/uploads'
init .py 中的app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
在views.py @app.route('/fileupload', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':
#check if the post request has the file part
if 'file' not in request.files:
flash('No file part')
return redirect(request.url)
file = request.files['file']
# if user does not select file, browser also
#submit an empty part without filename
if file.filename == '':
flash('No selected file')
return redirect(request.url)
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
return redirect(url_for('uploaded_file',
filename=filename))
return '''
<!doctype html>
<title>Upload new File</title>
<h>UPload new file</h1>
<form action="" method=post enctype=multipart/form-data>
<p><input type=file name=file>
<input type=submit value=Upload>
</form>
'''
@app.route('/uploads/<filename>')
def uploaded_file(filename):
return send_from_directory(app.config['UPLOAD_FOLDER'],
filename)
我的文件夹结构如下
/project folder
--/app
----/static
--------/uploads
----/templates
----_init__.py
----views.py
--config.py
当我使用/ tmp /将其存储在内存中时,上传器没有问题。我认为它没有找到我文件夹的正确路径。有人可以帮忙吗?我是一个非常业余的python开发人员。
答案 0 :(得分:5)
/tmp
和/static/uploads/..
都是绝对路径。而且您的代码正在查看/
文件夹,而不是查看项目的文件夹。您应该使用绝对路径指向文件夹/path/to/your/project/static/uploads/..
或使用相对于正在执行的代码的路径,例如./static/uploads
。
您还可以使用以下代码段生成绝对路径:
from os.path import join, dirname, realpath
UPLOADS_PATH = join(dirname(realpath(__file__)), 'static/uploads/..')
答案 1 :(得分:3)
这对我有用:
basedir = os.path.abspath(os.path.dirname(__file__))
file.save(os.path.join(basedir, app.config['UPLOAD_FOLDER'], filename))
答案 2 :(得分:0)
@jidesakin 的解决方案有效,但这是另一种解决方案:
将您的上传文件夹从静态目录移回您的应用程序文件夹所在的项目目录,即您的应用程序和环境文件夹所在的文件夹。
您的结构将类似于:
'projectfolder
--/app
--config.py
--__init__.py
------/static
------/templates
------config
--uploads
然后将上传文件夹的内容从“静态/上传”更改为“上传”...