需要一些主要的batch-fu
我有一个庞大的文件夹结构,其中包含数千个文件夹和子文件夹。我需要将此结构中的所有 DLL 复制到一个文件夹中。
我已经尝试过,
xcopy *.dll c:\output /S /E
但是它会复制带有结构的 DLL。
有没有办法仅使用 DOS 命令在批处理文件中执行我想要的操作。
I have this massive folder structure with thousands of folders and subfolders. I need to copy all the DLLs from this structure into a single folder.
I've tried the
xcopy *.dll c:\output /S /E
but that copies the DLLs with the structure.
Is there a way to do what I want in a batch file using DOS commands only.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设文件夹/文件名中没有空格:
Assuming no spaces in folder/file names:
查看此内容的副本
您可以在超级用户:xcopy 文件到单个目录中
You can look at a duplicate of this at
superuser: xcopy files into single directory