以下脚本查找包含txt文件的所有文件夹
D:\Testfolder\_dn
现在我想将这些文件夹移到
D:\Testfolder\_dn\2nd
D:\Testfolder\_dn\3rd
D:\Testfolder\_dn\4th
D:\Testfolder\_dn\5th
D:\Testfolder\_dn\first
所以它看起来如下 -
+
我该怎么做?
答案 0 :(得分:1)
从here开始,您可以执行以下操作 -
> for (i in 1:length(links)) {
> download.file(links[i], paste(fold, "/", i, ".pdf", sep=""), mode='wb') }