我創建通過path <- file("C:/test.txt")
文件連接並打印相關的連接對象時,我可以看到連接的「屬性」通過文件創建的文件連接的屬性:訪問()
> path
description class mode text opened
"C:/test.txt" "file" "r" "text" "closed"
can read can write
"yes" "yes"
不過,我似乎弄清楚不能如何實際訪問的各種屬性值
這裏是我試過到目前爲止:
> attributes(path)
$class
[1] "file" "connection"
$conn_id
<pointer: 0x0000004b>
> path$description
Error in path$description : $ operator is invalid for atomic vectors
> path["description"]
[1] NA
> file.info(path)
Error in file.info(path) : invalid filename argument
任何想法?
你想訪問什麼屬性? – Pop
*屬性*可能不是正確的術語,但我只是指打印附加到連接的對象時看到的內容:「description」,「mode」,「opened」等。 – Rappster