Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个目录,其中有许多不同类型的文件,根目录中还有一些其他目录。我只想复制根目录中的文件,不想复制根目录中的任何其他目录。
我想在 Windows 的命令行上执行此操作。
C:> copy \*.* [destination folder]
这会将文件从当前驱动器的根目录(在本例中为 c:)复制到目标文件夹(您必须将其替换为“[目标文件夹]”)。
进入您的根文件夹并尝试以下操作:
copy *.* C:\WhateverFolder
那应该只将根文件而不是文件夹复制到另一个文件夹中。
您必须先创建另一个文件夹:
MD WhateverFolderName
如果您只想复制一种类型的文件,您可以更改 * 。* 说 *.exe