You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
730 B

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/RcppExports.R
\name{incant}
\alias{incant}
8 years ago
\title{Retrieve 'magic' attributes from files and directories}
\usage{
incant(path)
}
\arguments{
\item{path}{character vector of files to use magic on}
}
\value{
8 years ago
a \code{tibble} / \code{data.frame} of file magic attributes.
Specifically, mime type, encoding, possible file extensions and
type description are returned as colums in the data frame along
with \code{path}.
}
\description{
8 years ago
Retrieve 'magic' attributes from files and directories
}
\examples{
library(magrittr)
library(dplyr)
system.file("img", package="filemagic") \%>\%
list.files(full.names=TRUE) \%>\%
incant() \%>\%
glimpse()
}