method

delete_prefixed

delete_prefixed(prefix)
public

No documentation available.

# File activestorage/lib/active_storage/service/gcs_service.rb, line 77
    def delete_prefixed(prefix)
      instrument :delete_prefixed, prefix: prefix do
        bucket.files(prefix: prefix).all do |file|
          begin
            file.delete
          rescue Google::Cloud::NotFoundError
            # Ignore concurrently-deleted files
          end
        end
      end
    end