# File lib/cloudfiles/storage_object.rb, line 15
    def initialize(container, objectname, force_exists = false, make_path = false)
      @container = container
      @containername = container.name
      @name = objectname
      @make_path = make_path
      @storagepath = "#{CloudFiles.escape @containername}/#{CloudFiles.escape @name, '/'}"

      if force_exists
        raise CloudFiles::Exception::NoSuchObject, "Object #{@name} does not exist" unless container.object_exists?(objectname)
      end
    end