1

我正在尝试使用exams2canvas()R/Exams 生成考试。似乎 zip 函数没有正常工作,因为它似乎没有在临时目录中生成 zip 文件,以便 R 移动到我想要的目录。相反,我收到这样的消息:

In file.copy(file.path(test_dir, zipname), dir, recursive = TRUE) :
  problem copying C:\Users\NAME\AppData\Local\Temp\RtmpIXJAEv\file11fc433ed06\CLASS_SP20_exam1\CLASS_SP20_exam1.zip to exam_prints\exam1_03-18-2020\CLASS_SP20_exam1.zip:
  No such file or directory

关于如何解决这个问题的任何想法?

4

1 回答 1

0

通常,这意味着您没有安装合适的 zip 程序。(R/exams 应该真正检查这一点并抛出更好的错误消息。)

Windows 上最简单的解决方案是从https://CRAN.R-project.org/bin/windows/Rtools/安装 Rtools 。可能您需要在 Rtools 安装过程中选中将这些工具包含在搜索路径中的选项。

于 2020-03-18T21:08:16.623 回答