View source: R/labkey.webdav.R
labkey.webdav.put | R Documentation |
This will upload a file to a LabKey Server using WebDAV.
labkey.webdav.put(
localFile,
baseUrl=NULL,
folderPath,
remoteFilePath,
fileSet='@files',
description=NULL
)
localFile |
the local filepath to upload |
baseUrl |
a string specifying the |
folderPath |
a string specifying the |
remoteFilePath |
the destination path of this file on the remote server, relative to the 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". |
description |
(optional) the description to attach to this file on the remote server. |
Upload a single file from the local machine to a LabKey Server using WebDAV.
TRUE if the file was uploaded successfully
Ben Bimber, Ph.D.
labkey.webdav.get
,
labkey.webdav.mkDir
,
labkey.webdav.mkDirs
,
labkey.webdav.pathExists
,
labkey.webdav.listDir
,
labkey.webdav.delete
,
labkey.webdav.downloadFolder
## Not run:
## upload a single file to a LabKey Server
library(Rlabkey)
labkey.webdav.put(
localFile="myFileToUpload.txt",
baseUrl="http://labkey/",
folderPath="home",
remoteFilePath="myFileToUpload.txt"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.