R/bdy.getwd.R

Defines functions bdy.getwd

Documented in bdy.getwd

#' Get working directory
#'
#' @export
#'
bdy.getwd <- function(){
    command=paste('BaiduPCS-Go.exe pwd')
    x <- system(command = command,
                intern = T,show.output.on.console = F)
    Encoding(x) = 'UTF-8'
    cat(paste0(x,collapse = '\n'))
}
yikeshu0611/RBaiduYun documentation built on Feb. 22, 2021, 4:57 a.m.