vsi_mkdir | R Documentation |
vsi_mkdir()
creates a new directory with the indicated mode.
For POSIX-style systems, the mode is modified by the file creation mask
(umask). However, some file systems and platforms may not use umask, or
they may ignore the mode completely. So a reasonable cross-platform
default mode value is 0755
.
With recursive = TRUE
, creates a directory and all its ancestors.
This function is a wrapper for VSIMkdir()
and VSIMkdirRecursive()
in
the GDAL Common Portability Library.
vsi_mkdir(path, mode = "0755", recursive = FALSE)
path |
Character string. The path to the directory to create. |
mode |
Character string. The permissions mode in octal with prefix
|
recursive |
Logical scalar. |
0
on success or -1
on an error.
vsi_read_dir()
, vsi_rmdir()
new_dir <- file.path(tempdir(), "newdir")
vsi_mkdir(new_dir)
vsi_stat(new_dir, "type")
vsi_rmdir(new_dir)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.