Skip to content

Instantly share code, notes, and snippets.

@y13i
Created July 3, 2014 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save y13i/8c1cd3f1e7730424bb55 to your computer and use it in GitHub Desktop.
Save y13i/8c1cd3f1e7730424bb55 to your computer and use it in GitHub Desktop.
S3バケット内の全オブジェクト一覧をファイルに出力する
File.open "./list_of_objects_in_some_bucket.txt", "w" do |file|
s3.buckets["some_bucket"].objects.each do |object|
file.puts object.key
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment