def download(filename): return send_from_directory(FileUtil.get_upload_path() ,filename,as_attachment=True)
def index(): apklist = FileUtil.get_files() print apklist return render_template('index.html', apklist=apklist)