File-class(Rook)
File-class()所属R语言包:Rook
Class File
类文件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A Rook application that serves static files from a root directory, according to the path info of the Rook request.
一车提供静态文件的应用程序,从根目录,根据乌鸦请求的路径信息。
方法----------Methods----------
root is the name of the directory from where to serve files.
root是服务文件的目录的名称。
参见----------See Also----------
Rhttpd.
Rhttpd。
实例----------Examples----------
# This example serves all your files in /etc (on UNIX and Mac only).[这个例子提供的所有文件在/ etc(仅适用于UNIX和Mac)。]
#[]
# Note that when you open the application, you will see the word[请注意,当你打开的应用程序,你会看到这个词]
# 'Forbidden'. "File" doesn't serve directories, so you must amend the[“禁止”。 “文件”不符合目录,所以你必须修改]
# url in the location bar with the file you want to view. Try adding /passwd.[您要查看的文件在地址栏中的URL。尝试添加/ passwd文件。]
s <- Rhttpd$new()
## Not run: [#不运行:]
s$start(quiet=TRUE)
## End(Not run)[#(不执行)]
s$add(name="etc",app=File$new('/etc'))
## Not run: [#不运行:]
s$browse('etc') # Opens a browser window to the app.[打开一个浏览器窗口的应用程序。]
## End(Not run)[#(不执行)]
s$remove(all=TRUE)
rm(s)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|