getFolderPath {Rlabkey} | R Documentation |
Returns the current folder path for a LabKey session
getFolderPath(session)
session |
the session key returned from getSession |
Returns a string containing the current folder path for the passed in LabKey session
A character array containing the folder path, relative to the root.
Peter Hussey
https://www.labkey.org/Documentation/wiki-page.view?name=projects
## Not run:
# library(Rlabkey)
lks<- getSession("https://www.labkey.org", "/home")
getFolderPath(lks) #returns "/home"
## End(Not run)