Create a new container, which may be a project, folder, or workbook, on the LabKey server with parameters to control the containers name, title, description, and folder type.
labkey.security.createContainer(baseUrl=NULL, parentPath, name = NULL, title = NULL,
description = NULL, folderType = NULL, isWorkbook = FALSE)
A string specifying the baseUrl
for the labkey server.
A string specifying the parentPath
for the new container.
The name of the container, required for projects or folders.
The title of the container, used primarily for workbooks.
The description of the container, used primarily for workbooks.
The name of the folder type to be applied (ex. Study or Collaboration).
Whether this a workbook should be created. Defaults to false.
Returns information about the newly created container.
This function allows for users with proper permissions to create a new container, which may be a project, folder, or workbook, on the LabKey server with parameters to control the containers name, title, description, and folder type. If the container already exists or the user does not have permissions, an error message will be returned.
labkey.getFolders
,
labkey.security.getContainers
,
labkey.security.deleteContainer
,
labkey.security.moveContainer
# NOT RUN {
library(Rlabkey)
labkey.security.createContainer(baseUrl="http://labkey/", parentPath = "/home",
name = "NewFolder", description = "My new folder has this description",
folderType = "Collaboration"
)
# }
Run the code above in your browser using DataLab