This function checks if the specified file is an feather
file and attempts
to read it using arrow::read_feather. It returns TRUE
if the file is an
feather
file and contains a non-null object, otherwise FALSE.
Arguments
- File
A character string specifying the path to the file to be checked. This can not be empty. The function will attempt to determine the file type based on the file extension. If the file extension is not
feather
, the function will returnFALSE
.- warning
logical. If
TRUE
(default), warnings will be printed if the file does not exist.