opal.file_write | R Documentation |
Write a file from the Opal file system into the R session workspace.
opal.file_write(opal, source, destination = NULL)
opal |
Opal object. |
source |
Path to the file in the Opal file system (must exists and be accessible for the user). |
destination |
Path to the destination file, relative to the R session workspace. Any required sub-folders will be created. If ommitted, file with same name will be written. |
Other file functions:
opal.file()
,
opal.file_cp()
,
opal.file_download()
,
opal.file_ls()
,
opal.file_mkdir()
,
opal.file_mkdir_tmp()
,
opal.file_mv()
,
opal.file_read()
,
opal.file_rm()
,
opal.file_unzip()
,
opal.file_upload()
## Not run:
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
# user home expansion
opal.file_write(o, "~/spss/DatabaseTest.sav")
# rename file
opal.file_write(o, "/home/administrator/spss/DatabaseTest.sav", "x.sav")
# create sub-folder
opal.file_write(o, "/home/administrator/spss/DatabaseTest.sav", "test/x.sav")
opal.logout(o)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.