R/sftpRemoveDirectory.R

# sftpRemoveDirectory -- removes a directory from an sftp server
# returns TRUE if successful, FALSE otherwise
# 
# Author: brucehoff
###############################################################################

sftpRemoveDirectory<-function(host, username, password, remotepath) {
  resetState()
  result<-.C("sftp_rmdir",
    as.character(host), 
    as.character(username), 
    as.character(password), 
    as.character(remotepath),  
    as.integer(0),
    PACKAGE="Rsftp")
  if (result[[5]]==0) return(TRUE) else return(FALSE)
}
Sage-Bionetworks/Rsftp documentation built on May 9, 2019, 12:11 p.m.