mjpclab / go-http-file-server

Simple command line based HTTP file server to share local file system
MIT License
379 stars 55 forks source link

请问上传文件是否支持断点续传,谢谢! #20

Open andywei001 opened 2 years ago

andywei001 commented 2 years ago

很棒的代码。请问上传文件是否支持断点续传,谢谢!

marjune163 commented 2 years ago

目前是不支持的哦~

andywei001 commented 2 years ago

有没有计划加入这个啊

marjune163 commented 2 years ago

目前的机制是使用浏览器端原生API和标准的form post协议,如要支持续传需要改造成自定义协议,需要配合新的浏览器才有的API读取文件二进制流进行上传,从复杂性、兼容性考虑,目前不会支持。