Vault.create_folder {solvebio} | R Documentation |
Create a new folder in a vault.
Vault.create_folder(
id,
path,
recursive = FALSE,
env = solvebio:::.solveEnv,
...
)
id |
The ID of the vault. |
path |
The path to the folder, within the vault. |
recursive |
Create all parent directories that do not yet exist (default: FALSE). |
env |
(optional) Custom client environment. |
... |
(optional) Additional folder creation parameters. |
## Not run:
vault = Vault.get_personal_vault()
Vault.create_folder(vault$id, "/My Folder")
## End(Not run)