批量过滤掉不同目录中的重复项

发布于 2024-12-09 08:29:03 字数 177 浏览 1 评论 0原文

我有两个文件夹,两个不同的位置,其中有一堆自动生成(通过安装和修复/重置生成)的文件。

有时会发生这样的情况:在两个文件夹中都找到具有特定名称和扩展名的文件,这会导致关联程序出现错误,解决方案是删除这两个文件夹之一,这样只剩下一个。

我在工作中主要使用批处理,新手xcopy等命令,如何才能达到我想要的结果?

I have two folders two different locations with a bunch of automatically generated (generated through install and repair/ reset) files in them.

Occasionally what happens is that a file of a particular name and extension is found in both folders which causes errors in the associated program, the solution is to delete one of the two so only one remains.

I use batch at work mostly the novice xcopy and so on commands, how if can I achieve my desired result?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

草莓味的萝莉 2024-12-16 08:29:03

OP 写道:

没关系,这解决了它:

for /r C:\1\ %%f in (*) do if exit "C:\2\%%~nxf" del /s /q "C:\1\%%~nxf

The OP wrote:

Never mind this fixed it:

for /r C:\1\ %%f in (*) do if exist "C:\2\%%~nxf" del /s /q "C:\1\%%~nxf
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文