Browse Source

added linux attribute name mangling to get_xattr_df

master
Ralf Herold 6 years ago
parent
commit
8f15a7361b
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 1
      R/df.R

1
R/df.R

@ -11,6 +11,7 @@ get_xattr_df <- function(path, follow_symlinks = TRUE) {
class(xattr_list$contents) <- c("AsIs", "list")
xdf <- as.data.frame(xattr_list, stringsAsFactors=FALSE)
attributes(xdf$contents) <- NULL
xdf$name <- handle_user_prefix_return(xdf$name)
class(xdf) <- c("tbl_df", "tbl", "data.frame")
xdf

Loading…
Cancel
Save