safeFileOpen(widgetTools)
safeFileOpen()所属R语言包:widgetTools
A function that checks to see if a connection can be made to a
一个函数来检查,看看是否可以连接到
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function checks to see if a given file name exists. If so, the function returns a connection to the file. Otherwise, it returns "fileName doest exist".
此功能检查,看看是否存在一个给定的文件名。如果是这样,该函数返回一个连接到该文件。否则,返回“文件名所行的事存在”。
用法----------Usage----------
safeFileOpen(fileName)
参数----------Arguments----------
参数:fileName
fileName a character string for the name of a file to which a connection is to be oppened
fileName一个文件,名称的字符串连接是oppened
Details
详情----------Details----------
When this function is used, users have to make sure to check to see if the returnd object inherits object "connection". Otherwise, the file doest not exist or a connection has not be made.
当使用此功能,用户必须确保进行检查,看,如果returnd对象继承对象的“连接”。否则,该文件所行的事不存在或不能连接。
值----------Value----------
The function returns a connection object that inherits class "connection" if the file exists and is opend. Otherwise, the string "fileName doest not exist"
该函数返回一个连接对象,继承类的“连接”,如果该文件存在并且是opend。否则,不存在字符串“文件名所行的事”
注意----------Note----------
This function is no placed here to be used by various
此功能没有放在这里,要通过各种
作者(S)----------Author(s)----------
Jianhua Zhang
参见----------See Also----------
file
file
举例----------Examples----------
write("A test file", "testFile4safeFileOpen")
tt <- safeFileOpen("testFile4safeFileOpen")
inherits(tt, "connection")
unlink("testFile4safeFileOpen")
tt <- safeFileOpen("testFile4safeFileOpen")
inherits(tt, "connection")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|