将大型电子书文件上传到亚马逊
Upload large ebook file to Amazon
有没有办法将像 epub/mobi 这样的大型电子书(超过 100MB)上传到亚马逊?
我已经尝试上传到亚马逊,但它说文件超过 20MB。
您需要像 s3cmd 这样的工具。
S3cmd is a free command line tool and client for uploading, retrieving and managing data in Amazon S3 and other cloud storage service providers that use the S3 protocol, such as Google Cloud Storage or DreamHost DreamObjects. It is best suited for power users who are familiar with command line programs. It is also ideal for batch scripts and automated backup to S3, triggered from cron, etc.
下面的简单示例:
s3cmd put file0-1.epub s3://BUCKET_NAME_HERE/test-upload.epub
假设您已经通过 aws configure
配置了 aws key 和 secret
有没有办法将像 epub/mobi 这样的大型电子书(超过 100MB)上传到亚马逊?
我已经尝试上传到亚马逊,但它说文件超过 20MB。
您需要像 s3cmd 这样的工具。
S3cmd is a free command line tool and client for uploading, retrieving and managing data in Amazon S3 and other cloud storage service providers that use the S3 protocol, such as Google Cloud Storage or DreamHost DreamObjects. It is best suited for power users who are familiar with command line programs. It is also ideal for batch scripts and automated backup to S3, triggered from cron, etc.
下面的简单示例:
s3cmd put file0-1.epub s3://BUCKET_NAME_HERE/test-upload.epub
假设您已经通过 aws configure