有什么好的工具/方法可以在程序运行后查找磁盘上的哪些文件已更改?

发布于 2024-07-08 09:21:27 字数 191 浏览 6 评论 0原文

我遇到一个奇怪的问题,即我的 Visual Studio 2005 C++ 程序在新生成后第一次运行时崩溃。 我在调试这个间歇性问题时遇到了困难,我怀疑它与我的硬盘驱动器上某个正在更改的文件有关。 如果我能找到这些文件,可能会为这个问题提供更多的见解。 有没有什么好的工具可以观察特定程序运行时正在创建/删除/修改哪些文件?

提前致谢!

I'm experiencing a strange issue where my Visual Studio 2005 C++ program crashes the first time it runs after a new build. I'm having a difficult time debugging this intermittent issue and I suspect it's somehow related to a file somewhere on my hard drive that is being changed. If I can find the file(s), that might provide some more insight into this issue. Are there any good tools for observing which files are being created/deleted/modified when a specific program is run?

Thanks in advance!

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

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

发布评论

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

评论(3

怕倦 2024-07-15 09:21:27

您可以使用进程监视器工具。 将“显示文件系统活动”设置为“开”,并在进程名称上设置过滤器以仅获取您需要的跟踪。

You can use Process Monitor tool. Set "Show File System Activity" to ON and set a filter on the process name to get only the traces you need.

逆夏时光 2024-07-15 09:21:27

使用查找

touch ~/test-marker
# run your program
find <directory> -newer ~/test-marker

Use find.

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