flask-file-server icon indicating copy to clipboard operation
flask-file-server copied to clipboard

A flask file server with an elegant frontend for browsing, uploading and streaming files

Results 16 flask-file-server issues
Sort by recently updated
recently updated
newest added

https://github.com/Wildog/flask-file-server/blob/01b0d080a8ef116a7d0db5cf717592f353da7f91/file_server.py#L108 should be something like `from os.path import splitext` `[...]` `if splitext(filename)[1] in ignored:` Also, I think it would actually be even better if `ignored` would be a set

Hi, thank you for the great flask file server, and I found an issue about timestamp of modified time. According to code, the timestamp is based on utc time, however,...

I have tried opening music files and video files, although they can be downloaded as using the save as option, they are not being able to be streamed. How do...

How to point to usb files

My env is win10 pychram I have add # _*_ coding:utf-8 _*_ in head of file_server.py then issue in chrome under win10 http://127.0.0.1:8000/ File "D:\Anaconda2\lib\site-packages\jinja2\filters.py", line 136, in do_lower return...

![Screenshot_2024-09-11-08-00-29-56_c759c44d10a956b96f85cc66750ff86e.jpg](https://github.com/user-attachments/assets/812cba2a-120f-41b9-b87d-555d40c26bd9) ``` from flask import Flask app=Flask(__name__) @app.route('/') def hello(): return 'hello user' if __name__ == "__main__": app.run(port=3000,debug=True) ```