如何在Python中使用flask搭建一个共享服务器-创新互联
这期内容当中小编将会给大家带来有关如何在Python 中使用flask搭建一个共享服务器,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
创新互联公司2013年至今,是专业互联网技术服务公司,拥有项目网站设计制作、网站设计网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元武冈做网站,已为上家服务,为武冈各地企业和个人服务,联系电话:13518219792一、python代码
import os import time from flask import Flask,render_template,url_for,redirect,send_from_directory # 共享文件夹的根目录 rootdir = r'C:\Users\Administrator\Downloads\zlkt' app = Flask(__name__) @app.route('/doc/') @app.route('/doc//') def document(subdir=''): if subdir == '': # 名字为空,切换到根目录 os.chdir(rootdir) else: fullname = rootdir + os.sep + subdir # 如果是文件,则下载 if os.path.isfile(fullname): return redirect(url_for('downloader', fullname=fullname)) # 如果是目录,切换到该目录下面 else: os.chdir(fullname) current_dir = os.getcwd() current_list = os.listdir(current_dir) contents = [] for i in sorted(current_list): fullpath = current_dir + os.sep + i # 如果是目录,在后面添加一个sep if os.path.isdir(fullpath): extra = os.sep else: extra = '' content = {} content['filename'] = i + extra content['mtime'] = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(os.stat(fullpath).st_mtime)) content['size'] = str(round(os.path.getsize(fullpath) / 1024)) + 'k' contents.append(content) return render_template('test.html', contents=contents, subdir=subdir, ossep=os.sep) @app.route('/download/ ') def downloader(fullname): filename = fullname.split(os.sep)[-1] dirpath = fullname[:-len(filename)] return send_from_directory(dirpath, filename, as_attachment=True) if __name__ == '__main__': app.run()
分享文章:如何在Python中使用flask搭建一个共享服务器-创新互联
转载注明:http://ybzwz.com/article/cdcjej.html