# File lib/mongo/grid/fs_bucket.rb, line 216
      def open_download_stream(id)
        read_stream(id).tap do |stream|
          if block_given?
            yield stream
            stream.close
          end
        end
      end