Checks if a Location is a Folder

DESCRIPTION:

Queries the server to determine if a specified location is a folder.

USAGE:

webDav.isFolder(serverUrl, userName, password = NA, remoteLocation)

ARGUMENTS:

serverUrl
A character string identifying the server's address (for example: "http://myserver:8080").
userName
A character string containing the identifier (the login name) of user (for example: "johndoe").
password
A character string used to log into the Spotfire S+ server (for example: "myPassword").
remoteLocation
The full path (including the name of the file) to the file on the server. For example, http://myserver:8080/SPServer/webdav/testfile.jpg.

DETAILS:

The password is not encrypted when it is sent from the client to the server. You can omit the password parameter if server does not require one.

VALUE:

Returns TRUE if the specified location is a folder; otherwise returns FALSE.

SEE ALSO:

,

EXAMPLES:

## Not run: 
## userName <- "johndoe"
## password <- "mypassword"
## serverUrl <- "http://myserver:8080"
## webdavRoot = paste(serverUrl, "/SPServer/webdav", sep = "")
## resultsFolder <- paste(webdavRoot, "/results", sep = "")
## End(Not run)