mongo.gridfs.find(rmongodb)
mongo.gridfs.find()所属R语言包:rmongodb
Find a GridFS file
查找GridFS文件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Find a GridFS file and return a mongo.gridfile object used for further operations on it
查找GridFS文件,就可以返回用于进一步操作的一个mongo.gridfile对象,
用法----------Usage----------
mongo.gridfs.find(gridfs, query)
参数----------Arguments----------
参数:gridfs
A (mongo.gridfs) object.
A(mongo.gridfs)的对象。
参数:query
(string) The name of the GridFS file to locate. This parameter may also be a mongo.bson query object and is used to search the GridFS "files" collection documents for matches. Alternately, query may be a list which will be converted to a mongo.bson object by mongo.bson.from.list().
(字符串)的GridFS文件的名称来定位。此参数也可能是mongo.bson的查询对象,并用于搜索GridFS的“文件”收集文件匹配。或者,query可能是由mongo.bson.from.list()到mongo.bson对象的列表将被转换。
值----------Value----------
NULL, if not found; otherwise, a mongo.gridfile object corresponding to the found GridFS file.
NULL,如果没有找到,否则,一个mongo.gridfile的对象,对应的找到GridFS文件。
参见----------See Also----------
mongo.gridfile,<br> mongo.gridfile.get.filename,<br> mongo.gridfs.
mongo.gridfile,参考mongo.gridfile.get.filename,<BR> mongo.gridfs。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
gridfs <- mongo.gridfs.create(mongo, "grid")
gf <- mongo.gridfs.find(gridfs, "test.dat")
print(mongo.gridfile.get.length(gf))
# find a GridFS file uploaded midnight July 4, 2008[找到一个GridFS文件上传2008年7月4日午夜]
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append(buf, "uploadDate",
strptime("07-04-2008", "%m-%d-%Y"))
query <- mongo.bson.from.buffer(buf)
gf <- mongo.gridfs.find(gridfs, query)
if (!is.null(gf))
print(mongo.gridfile.get.filename(gf))
mongo.gridfs.destroy(gridfs)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|