Powershell - 如果文件夹包含txt文件,则将文件夹移动到其他位置

时间:2018-03-20 13:51:31

标签: powershell

以下脚本查找包含txt文件的所有文件夹

D:\Testfolder\_dn

现在我想将这些文件夹移到

D:\Testfolder\_dn\2nd
D:\Testfolder\_dn\3rd
D:\Testfolder\_dn\4th
D:\Testfolder\_dn\5th
D:\Testfolder\_dn\first

所以它看起来如下 -

+

我该怎么做?

1 个答案:

答案 0 :(得分:1)

here开始,您可以执行以下操作 -

> for (i in 1:length(links)) {
>     download.file(links[i], paste(fold, "/", i, ".pdf", sep=""), mode='wb')   }