예제 #1
0
파일: app.py 프로젝트: hanks-zyh/fir-local
def download(filename):
    return send_from_directory(FileUtil.get_upload_path() ,filename,as_attachment=True)
예제 #2
0
파일: app.py 프로젝트: hanks-zyh/fir-local
def index():
    apklist = FileUtil.get_files()
    print apklist
    return render_template('index.html', apklist=apklist)