Move a Drive file to a different folder, give it a different name, or both.
drive_mv(
file,
path = NULL,
name = NULL,
overwrite = NA,
verbose = deprecated()
)
Something that identifies the file of interest on your Google
Drive. Can be a name or path, a file id or URL marked with as_id()
, or a
dribble
.
Specifies target destination for the file on Google
Drive. Can be an actual path (character), a file id marked with
as_id()
, or a dribble
.
If path
is a shortcut to a folder, it is automatically resolved to its
target folder.
If path
is given as a path (as opposed to a dribble
or an id), it is
best to explicitly indicate if it's a folder by including a trailing
slash, since it cannot always be worked out from the context of the call.
By default, the file stays in its current folder.
Character, new file name if not specified as part of
path
. This will force path
to be interpreted as a folder, even if it
is character and lacks a trailing slash. By default, the file keeps its current name.
Logical, indicating whether to check for a pre-existing file
at the targetted "filepath". The quotes around "filepath" refer to the fact
that Drive does not impose a 1-to-1 relationship between filepaths and files,
like a typical file system; read more about that in drive_get()
.
NA
(default): Just do the operation, even if it results in multiple
files with the same filepath.
TRUE
: Check for a pre-existing file at the filepath. If there is
zero or one, move a pre-existing file to the trash, then carry on. Note
that the new file does not inherit any properties from the old one, such
as sharing or publishing settings. It will have a new file ID. An error is
thrown if two or more pre-existing files are found.
FALSE
: Error if there is any pre-existing file at the filepath.
Note that existence checks, based on filepath, are expensive operations, i.e. they require additional API calls.
This logical argument to
individual googledrive functions is deprecated. To globally suppress
googledrive messaging, use
options(googledrive_quiet = TRUE)
(the default
behaviour is to emit informational messages). To suppress messaging in a
more limited way, use the helpers local_drive_quiet()
or
with_drive_quiet()
.
An object of class dribble
, a tibble with one row per file.
Makes a metadata-only request to the files.update
endpoint:
if (FALSE) { # drive_has_token()
# create a file to move
file <- drive_example_remote("chicken.txt") %>%
drive_cp("chicken-mv.txt")
# rename it, but leave in current folder (root folder, in this case)
file <- drive_mv(file, "chicken-mv-renamed.txt")
# create a folder to move the file into
folder <- drive_mkdir("mv-folder")
# move the file and rename it again,
# specify destination as a dribble
file <- drive_mv(file, path = folder, name = "chicken-mv-re-renamed.txt")
# verify renamed file is now in the folder
drive_ls(folder)
# move the file back to root folder
file <- drive_mv(file, "~/")
# move it again
# specify destination as path with trailing slash
# to ensure we get a move vs. renaming it to "mv-folder"
file <- drive_mv(file, "mv-folder/")
# `overwrite = FALSE` errors if something already exists at target filepath
# THIS WILL ERROR!
drive_create("name-squatter-mv", path = "~/")
drive_mv(file, path = "~/", name = "name-squatter-mv", overwrite = FALSE)
# `overwrite = TRUE` moves the existing item to trash, then proceeds
drive_mv(file, path = "~/", name = "name-squatter-mv", overwrite = TRUE)
# Clean up
drive_rm(file, folder)
}