是否存在用于检查两个相似目录中文件差异的程序?

发布于 2024-08-27 10:22:50 字数 1536 浏览 8 评论 0原文

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

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

发布评论

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

评论(8

递刀给你 2024-09-03 10:22:50

我非常喜欢 DiffMerge

I'm pretty fond of DiffMerge.

深爱成瘾 2024-09-03 10:22:50

我首先想到的是任何类 Unix 系统都附带的 diff 工具。

The first I can think of is the diff tool that comes with any Unix-like system.

策马西风 2024-09-03 10:22:50

我更喜欢使用 Araxis Merge。它是一个非常有用的文件和文件夹比较和合并工具。它唯一的缺点是它不是免费的。

I prefer using Araxis Merge. It's a very useful tool for file and folder comparison and merging. The only disadvantage it has is that it's non-free.

旧话新听 2024-09-03 10:22:50

Python 有一个很好的文件和目录比较模块: http://docs.python.org/library/ filecmp.html

该程序

import filecmp
filecmp.dircmp( 'a', 'b' ).report()

会告诉你很多东西。然后,您可以对其进行自定义以提供有关差异的更多或更少信息。

Python has a nice file and directory comparison module: http://docs.python.org/library/filecmp.html

The program

import filecmp
filecmp.dircmp( 'a', 'b' ).report()

Will tell you a lot. You can then customize this to provide more or less information on the differences.

流云如水 2024-09-03 10:22:50

我喜欢 WinMerge,尽管我不知道它对于 DLL 等二进制文件的执行效果如何。

I like WinMerge, though I don't know how well it would perform with binary files like DLLs.

┾廆蒐ゝ 2024-09-03 10:22:50

Synchronize 它就是为了做到这一点而创建的。

http://www.grigsoft.com/wndsync.htm

同步它! 3个细节

1:文件列表显示文件夹比较结果。
替代文本
(来源:grigsoft.com

2:启动对话框以简单的形式。
替代文本
(来源:grigsoft.com

3:启动对话框如果您需要全功率,可以有所不同
替代文本
(来源:grigsoft.com

它是由grigsoft(他们还制作了出色的 Compare It! diff 工具)。

Synchronize It is created to do exactly this.

http://www.grigsoft.com/wndsync.htm

Synchronize It! 3 details

1: File list displaying results of folders comparison.
alt text
(source: grigsoft.com)

2: Start dialog in simple form.
alt text
(source: grigsoft.com)

3: Start dialog can be different, if you need full power
alt text
(source: grigsoft.com)

It is made by grigsoft (they also make the excellent Compare It! diffing tool).

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