sp_dir_info()
is a wrapper for the list_files
method with some additional
features based on fs::dir_info()
. sp_dir_ls()
returns a character vector
and does not yet include support for the recurse
argument. If
{fs}
is installed, the size column is formatted using fs::as_fs_bytes()
and an additional "type" factor column is added with values for directory and
file.
Usage
sp_dir_info(
path = NULL,
...,
info = "partial",
full_names = TRUE,
pagesize = 1000,
drive_name = NULL,
drive_id = NULL,
drive = NULL,
recurse = FALSE,
type = "any",
regexp = NULL,
invert = FALSE,
perl = FALSE,
call = caller_env()
)
sp_dir_ls(
path = NULL,
...,
full_names = FALSE,
pagesize = 1000,
drive_name = NULL,
drive_id = NULL,
drive = NULL,
type = "any",
regexp = NULL,
invert = FALSE,
perl = FALSE,
call = caller_env()
)
Arguments
- path
Path to directory or folder. SharePoint folder URLs are allowed. If
NULL
, path is set to default "/".- ...
Arguments passed on to
get_sp_drive
drive_url
A SharePoint Drive URL to parse for a Drive name and other information. If
drive_name
is a URL, it is used asdrive_url
.default_drive_name
Drive name string used only if input is a document URL and drive name is not part of the URL. Defaults to
getOption("sharepointr.default_drive_name", "Documents")
cache
If
TRUE
, cache drive to a file usingcache_sp_drive()
.refresh
If
TRUE
, get a new drive even if the existing drive is cached as a local option. IfFALSE
, use the cachedms_drive
object if it exists.cache_file
File name for cached drive if
cache = TRUE
. Defaults to a option set withsharepointr.cache_file_drive
(which defaults to"sp_drive.rds"
).site_url
A SharePoint site URL in the format "https://[tenant name].sharepoint.com/sites/[site name]". Any SharePoint item or document URL can also be parsed to build a site URL using the tenant and site name included in the URL.
site
A
ms_site
object. Ifsite
is supplied,site_url
,site_name
, andsite_id
are ignored.overwrite
If
TRUE
, replace the existing cached object named bycache_file
with the new object. IfFALSE
, error if a cached file with the samecache_file
name already exists.
- info
The information to return: "partial", "name" or "all". If "partial", a data frame is returned containing the name, size, ID and whether the item is a file or folder. If "all", a data frame is returned containing all the properties for each item (this can be large).
- full_names
If
TRUE
(default), return the full file path as the name for each item.- pagesize
Maximum number of items to return. Defaults to 1000. Decrease if you are experiencing timeouts.
- drive_name, drive_id
SharePoint Drive name or ID passed to
get_drive
method for SharePoint site object.- drive
A
ms_drive
object. Ifdrive
is supplied,drive_name
anddrive_id
are ignored.- recurse
If
TRUE
, get info for each directory at the supplied path and combine this info with the item info for the supplied path.- type
Type of item to return. Can be "any", "file", or "directory". "directory" is not a supported option for
sp_dir_ls()
- regexp
Regular expression passed to
grep()
and used to filter the paths before they are returned.- invert
logical. If
TRUE
return indices or values for elements that do not match.- perl
logical. Should Perl-compatible regexps be used?
- call
The execution environment of a currently running function, e.g.
caller_env()
. The function will be mentioned in error messages as the source of the error. See thecall
argument ofabort()
for more information.
Examples
dir_url <- "<link to SharePoint directory or drive>"
if (is_sp_url(dir_url)) {
sp_dir_info(
path = dir_url
)
sp_dir_ls(
path = dir_url
)
}