所以基本上我需要上传大文件,最好是8GB。
我受到这些文件上传限制的限制:
<system.web>
<!-- set to max value, max request size is 2GB, takes precedence over IIS -->
<httpRuntime maxRequestLength="2097151" executionTimeout="3600"/>
...
<system.webServer>
<security>
<requestFiltering>
<!-- set to max value, IIS max length of content is 4GB -->
<requestLimits maxAllowedContentLength="4294967295"/>
</requestFiltering>
</security>
...
我环顾四周,听说超过 2GB 限制的唯一方法是分段上传文件,但实际上我还没有找到任何可以做到这一点的工具。有人知道吗?