1

我使用 R 3.1.1 64 bits /Windows 8.1./7-zip 64 bits 我已经尝试了很多天来使 odfWeave 工作,但没有成功。我尝试了不同的 odfWeaveControl 选项(见下文),但仍然从 R 收到错误消息。任何线索将不胜感激。查尔斯

Error unzipping file
In addition: Warning message: running command 'C:\Programmes\7-Zip\7z x -tzip "example01_in.odt" -yr' had status 127

odfctrl <- odfWeaveControl(zipCmd = c("C:/Program Files/7-Zip/7z a -tzip $$file$$ .", "C:/Program Files/7-Zip/7z x -tzip $$file$$"))

odfctrl <- odfWeaveControl(zipCmd = c("C:/Program Files/7-Zip/7z -r $$file$$ .", "C:/Program Files/7-Zip/7z -o $$file$$"))

odfctrl <- odfWeaveControl(zipCmd = c("C:/Program Files/7-zip/7z a -tzip $$file$$","C:/Program Files/7-zip/7z x $$file$$ -aoa")) 

odfctrl <- odfWeaveControl(zipCmd = c("C:/Program Files/7-zip/7z a -tzip $$file$$ .", "C:/Program Files/7-zip/7z x -tzip $$file$$")) 

odfctrl <- odfWeaveControl(zipCmd = c("C:\\Programmes\\7-Zip\\7z a -tzip $$file$$ . -r", "C:\\Programmes\\7-Zip\\7z x -tzip $$file$$ -yr"))

odfWeave("example01_in.odt", "example01.odt", control = odfctrl)
4

1 回答 1

0

也许有点晚了,但也许这篇文章有帮助:

创建 zip 文件:错误运行命令“”状态为 127

不知道 odfWeave 是否与 zip 一样utils::zip,但这显然是一个相关的问题

于 2015-07-21T18:16:50.093 回答