我在R中使用命令file.copy并且它抛出错误,但我无法找出原因。
file.copy(from="Z:/Ongoing/Test", to = "C:/Users/Darius/Desktop", overwrite = TRUE, recursive = TRUE)
Warning message:
In file.copy(from = "Z:/Ongoing/Test",:
problem copying Z:/Ongoing/Test to C:/Users/Darius/Desktop/Test: No such file or directory
有人能看到问题吗?即使它只给你一条警告信息,命令行也不起作用。
答案 0 :(得分:4)
实际上,我认为没有任何直接的方法来复制目录。我写了一个可以帮助你的功能。
此函数接受输入两个参数:
from:要复制的目录的完整路径
to:要复制目录的位置
假设:from和to只是一个目录的路径。
<body>
<div data-role="page" id="loggedin">
<div data-role="content">
You are in
</div>
<script type="text/javascript">
$('#loggedin').on("pagecreate",function(){
console.log('loaded');
......{Continue with stuff}
});
</script>
</div>
</body>
答案 1 :(得分:1)
file.copy()
不会创建目录。因此,仅当您将其复制到已经存在的文件夹时,它才起作用。