# File lib/fog/storage/models/google/file.rb, line 55
        def destroy
          requires :directory, :key
          begin
            connection.delete_object(directory.key, key)
          rescue Excon::Errors::NotFound
          end
          true
        end