| labkey.webdav.pathExists {Rlabkey} | R Documentation |
Tests if a path exists on a LabKey Server via WebDAV
Description
This will test if the supplied file/folder exists folder under the specified LabKey Server project using WebDAV.
Usage
labkey.webdav.pathExists(
baseUrl=NULL,
folderPath,
remoteFilePath,
fileSet='@files'
)
Arguments
baseUrl |
a string specifying the |
folderPath |
a string specifying the |
remoteFilePath |
the path to test, 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". |
Details
This will test if the supplied file/folder exists folder under the specified LabKey Server project using WebDAV.
Value
TRUE if the folder was created successfully
Author(s)
Ben Bimber, Ph.D.
See Also
labkey.webdav.get,
labkey.webdav.put,
labkey.webdav.mkDir,
labkey.webdav.mkDirs,
labkey.webdav.listDir,
labkey.webdav.delete,
labkey.webdav.downloadFolder
Examples
## Not run:
library(Rlabkey)
# Test folder
labkey.webdav.pathExists(
baseUrl="http://labkey/",
folderPath="home",
remoteFilePath="pathToTest"
)
# Test file
labkey.webdav.pathExists(
baseUrl="http://labkey/",
folderPath="home",
remoteFilePath="folder/fileToTest.txt"
)
## End(Not run)