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.

25 lines
844 B

8 years ago
#' Retrieve 'Magic' Attributes from Files and Directories
8 years ago
#'
8 years ago
#' The 'libmagic' library provides functions to determine 'MIME' type and other
#' metadata from files through their "magic" attributes. This is useful when you
#' do not wish to rely solely on the honesty of a user or the extension on a
#' file name. It also incorporates other metadata from the mime-db database
#' <https://github.com/jshttp/mime-db>
#'
#' Based on \code{file} / \code{libmagic} - \url{https://github.com/file/file}
#'
8 years ago
#' @name wand
8 years ago
#' @docType package
#' @author Bob Rudis (@@hrbrmstr)
#' @import purrr
8 years ago
#' @import tibble
#' @import tidyr
#' @import stringi
#' @importFrom rappdirs user_cache_dir
6 years ago
#' @useDynLib wand, .registration=TRUE
8 years ago
#' @importFrom Rcpp sourceCpp
#' @importFrom utils unzip
#' @importFrom dplyr mutate left_join mutate_all
8 years ago
#' @import stats
8 years ago
NULL