def validate_filesize(size):
'''
Validate if file size is too large or empty
size: size of file
'''
if size > config.max_file_size * 1024 * 1024:
abort(413)
if not request.content_length or not size:
logger.error('Request {} {} with empty file.'.format(request.method,
request.path))
abort(411)
评论列表
文章目录