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.
我正在尝试将文件夹的内容复制到另一个目录,但在主目录内是另一系列文件夹,我只想将非文件夹项目复制到目录中 - 我将如何通过批处理来实现这一点文件?
如果您使用该xcopy命令,默认情况下它将跳过文件夹。您必须使用/Sor/E参数来强制它复制目录。
xcopy
/S
/E
所以基本语法是xcopy source destination
xcopy source destination
在命令行上,xcopy /?用于您可以使用的命令行参数列表。
xcopy /?