Check whether file exists before upload.

This commit is contained in:
yueguoguo 2017-03-31 16:23:10 +08:00
Родитель 42723072b8
Коммит dccf28d7a0
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -197,7 +197,7 @@ fileTransfer <- function(from=".",
user,
file) {
if(missing(file)) stop("Please specify a file to transfer.")
option <- "-q -o StrictHostKeyChecking=no"
if(stringr::str_detect(from, ":")) {
@ -206,6 +206,8 @@ fileTransfer <- function(from=".",
file.path(paste0(user, "@", from), file),
to)
} else {
if(!file.exists(file.path(from, file))) stop("File does not exist!")
cmd <- sprintf("scp %s %s %s",
option,
file.path(from, file),