def object_exists(self, path):
        """Determine if an object exists on S3"""
        self.connect()
        s3f = S3File(self, path)
        return s3f.exists()