Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 .NET 应用程序,它使用 AWSSDK.S3 库将文件发送到服务器。
我要向其发送文件的服务器是实现 Amazon S3 功能子集的内部解决方案,目前不支持分块上传。
如何启用单块上传?
要改变我必须设置的当前行为
putRequest.UseChunkEncoding = false;
在 Amazon.S3.Transfer.Internal.SimpleUploadCommand.ConstructRequest()
图书馆客户目前似乎没有办法改变它。
问题链接:https ://github.com/aws/aws-sdk-net/issues/1057