| get_info {rio} | R Documentation |
Get File Info
Description
A utility function to retrieve the file information of a filename, path, or URL.
Usage
get_info(file)
get_ext(file)
Arguments
file |
A character string containing a filename, file path, or URL. |
Value
For get_info(), a list is return with the following slots
-
inputfile extension or information used to identify the possible file format -
formatfile format, seeformatargument ofimport() -
type"import" (supported by default); "suggest" (supported by suggested packages, seeinstall_formats()); "enhance" and "known " are not directly supported;NAis unsupported -
format_namename of the format -
import_functionWhat function is used to import this file -
export_functionWhat function is used to export this file -
filefile
For get_ext(), just input (usually file extension) is returned; retained for backward compatibility.
Examples
get_info("starwars.xlsx")
get_info("starwars.ods")
get_info("https://github.com/ropensci/readODS/raw/v2.1/starwars.ods")
get_info("~/duran_duran_rio.mp3")
get_ext("clipboard") ## "clipboard"
get_ext("https://github.com/ropensci/readODS/raw/v2.1/starwars.ods")