# File lib/fog/brightbox/models/storage/files.rb, line 15
        def all(options = {})
          requires :directory
          options = {
            "limit"   => limit,
            "marker"  => marker,
            "path"    => path,
            "prefix"  => prefix
          }.merge!(options)
          merge_attributes(options)
          parent = directory.collection.get(
            directory.key,
            options
          )
          if parent
            load(parent.files.map { |file| file.attributes })
          else
            nil
          end
        end