R - 使用系统命令对文件进行参数化解压缩

时间:2018-04-20 02:58:47

标签: r system backslash

我对R中使用以下文件解压缩大文件的速度很慢感到失望:

unzip("C:/My File.zip", exdir="C:/")

所以我写了一个系统命令:

system('powershell -command "Expand-Archive -Path "C:/My File.zip" -DestinationPath "C:/" -Force"')

这个命令运行得很漂亮,但现在我想参数化输入文件,我在构造命令时遇到了反斜杠转义字符的问题:

in_file <- "C:/My File.zip"
command <- paste0("\'powershell -command \"Expand-Archive -Path \"", in_file, "\" -DestinationPath \"C:/\" -Force\"'")

虽然cat(command)看起来像我想要的字符串:

cat(command)
> 'powershell -command "Expand-Archive -Path "C:/My File.zip" -DestinationPath "C:/" -Force"'

当我运行system(command)时出现错误:

Warning message:
running command ''powershell -command "Expand-Archive -Path "C:/My File.zip" -DestinationPath "C:/" -Force"'' had status 127 

我把它归结为命令并没有像我想要的那样实际运行,因为转义字符仍在那里:

print(command)
> "'powershell -command \"Expand-Archive -Path \"C:/My File.zip\" -DestinationPath \"C:/\" -Force\"'"

我做了各种尝试去除反斜杠,例如gsub("\","",str, fixed=TRUE)但我无法管理它。

如何让我的解压缩命令工作?

1 个答案:

答案 0 :(得分:0)

mt1022 使我走上了正确的轨道。为了完成这篇文章,答案是使用:

paste0('powershell -command "Expand-Archive -Path """', in_file, '""" -DestinationPath """', out_file, '""" -Force"')