需要一些主要的batch-fu

发布于 2024-08-17 14:25:08 字数 197 浏览 6 评论 0原文

我有一个庞大的文件夹结构,其中包含数千个文件夹和子文件夹。我需要将此结构中的所有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一桥轻雨一伞开 2024-08-24 14:25:08

假设文件夹/文件名中没有空格:

for /r %f in (*.dll) do copy %f %~nf.dll

Assuming no spaces in folder/file names:

for /r %f in (*.dll) do copy %f %~nf.dll
梦里泪两行 2024-08-24 14:25:08

查看此内容的副本

您可以在超级用户:xcopy 文件到单个目录中

You can look at a duplicate of this at

superuser: xcopy files into single directory

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文