Create a folder via WebDAV
This will create a folder under the specified LabKey Server project using WebDAV.
labkey.webdav.mkDir( baseUrl=NULL, folderPath, remoteFilePath, fileSet='@files' )
baseUrl |
a string specifying the |
folderPath |
a string specifying the |
remoteFilePath |
the folder path to create, relative to the LabKey folder root. |
fileSet |
(optional) the name of file server fileSet, which is typically "@files" (the default value for this argument). In some cases this might be "@pipeline" or "@fileset". |
Creates a folder on a LabKey Server using WebDAV. If the parent directory does not exist, this will fail (similar to mkdir on linux)
TRUE if the folder was created successfully
Ben Bimber, Ph.D.
library(Rlabkey) labkey.webdav.mkDir( baseUrl="http://labkey/", folderPath="home", remoteFilePath="toCreate" )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.