mongo.gridfs.remove.file(rmongodb)
mongo.gridfs.remove.file()所属R语言包:rmongodb
Remove a file from a GridFS on a MongoDB server
一个MongoDB服务器上删除一个文件从一个GridFS
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Remove a file from a GridFS on a MongoDB server.
删除一个文件,一个GridFS一个MongoDB的服务器上。
用法----------Usage----------
mongo.gridfs.remove.file(gridfs, remotename)
参数----------Arguments----------
参数:gridfs
A (mongo.gridfs) object.
A(mongo.gridfs)的对象。
参数:remotename
(string) The name of the file to be removed (as known within the GridFS).
(字符串)被删除的文件的名称(如已知的内GridFS)。
值----------Value----------
NULL
NULL
参见----------See Also----------
mongo.gridfs,<br> mongo.gridfs.store.file<br> mongo.gridfs.store.
mongo.gridfs,参考mongo.gridfs.store.file参考mongo.gridfs.store。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo)) {
gridfs <- mongo.gridfs.create(mongo, "grid")
## Not run: mongo.gridfs.remove.file(gridfs, "test.R")[#不运行:mongo.gridfs.remove.file(gridfs中,“test.R”)]
mongo.gridfs.destroy(gridfs)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|