this.search = function(name, cb){
        // Search file by name
        this.coleccion.find({name:{"$regex":name}}, cb);
    };