Sys.readlink(base)
Sys.readlink()所属R语言包:base
Read File Symbolic Links
阅读文件的符号链接
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Find out if a file path is a symbolic link, and if so what it is linked to, via the system call readlink.
找出文件路径,如果是一个符号链接,如果是这样,它与通过系统调用readlink。
Symbolic links are a Unix concept, not implemented on Windows.
符号链接是一个Unix的概念,而不是在Windows上执行。
用法----------Usage----------
Sys.readlink(paths)
参数----------Arguments----------
参数:paths
character vector of file paths. Tilde expansion is done: see path.expand.
文件路径的特征向量。波浪线扩建完成:看到path.expand。
值----------Value----------
A character vector of the the same length as paths. The entries are the path of the file linked to, "" if the path is not a symbolic link, and NA if there is an error (e.g., the path does not exist).
作为paths的相同长度的一个特征向量。条目链接到文件的路径,""如果路径是不是一个符号链接,NA如果有一个错误(例如,该路径不存在)。
参见----------See Also----------
file.symlink, file.info
file.symlink,file.info
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|