如何在send_from_directory Flask中给出绝对路径

时间:2018-06-28 18:43:41

标签: python flask

默认情况下,send_from_directory函数似乎采用提供给它的路径作为其项目目录的相对路径。我们如何提供通往它的绝对路径?

    @app.route('/download/<file>',methods=['GET'])
    def download_function(file):
        return send_from_directory("~/Desktop", file, as_attachment=True)

0 个答案:

没有答案