1
使用CMD或Batch将多个文件从子文件夹移动到一个文件夹
我在文件夹结构中的子文件夹中的文件是这样的: D:\Folder_Source D:\Folder_Source\file1.txt D:\Folder_Source\FolderA D:\Folder_Source\FolderA\file1.txt D:\Folder_Source\FolderA\file2.txt D:\Folder_Source\FolderB D:\Folder_Source\FolderB\file3.txt D:\Folder_Source\FolderB\file4.txt D:\Folder_Source\FolderB\file8.txt 我想动一些 txt 每个子文件夹中的文件 C:\Destination\ 从命令提示符。 例如,我想要移动的文件是 file1.txt, file2.txt, file8.txt等 如果目标文件夹中的文件与要复制的源文件夹中的文件名相同,我想要 保留两个文件而不是覆盖现有文件 。 我试过这个失败了,并没有给我预期的结果: move /s file1.txt file2.txt file8.txt C:\Destination 甚至可以通过命令行或批处理脚本实现这样的事情吗?