Quick question, simple console client for Amazon S3 at Windows?
|
Quick answer, check out s3.exe |
|||
|
|
|
I use a java based tool called Jsh3ll. (works in Windows obviously) The main feature that I needed was the ability to use a "commandfile". I.e. I use scripts to generate a text file with all the files I need to upload and then I can run one command to process the whole file. When I did the research 18 months ago or so, this was the only tool that had this functionality. |
|||
|
|
|
Cloudberry have written Powershell cmdlets that will probably do what you're looking for: http://www.cloudberrylab.com/default.aspx?page=amazon-s3-powershell |
|||||
|
|
You don’t say what you’re using it for, but one possibility is that you want to automate a process like a software build or a backup. If you don’t mind a little programming (and only a little, really), try boto, which is a Python module. We use it in a build script on Windows and it’s very easy. You can do something like this:
You can also generate those nifty auto-expiring URLs—something we use for paid downloads:
Python has an interactive command-line so it’s easy to experiment with it, too. |
|||
|
|