备份应用程序如何检测重命名?
我最近注意到 SyncToy(MS 出品)可以检测重命名和移动的文件。
他们是怎么做到的?它只是一个基于文件属性(最后修改日期、创建日期和文件大小)的精心设计的猜谜游戏吗?
I recently noticed that SyncToy (by MS) can detect renamed and moved files.
How do they do that? Is it only an elaborate guessing game based on file properties (last modification date, creation date, and file size)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
捕获文件重命名、删除等操作的一种方法是使用 FileSystemWatcher 类(使用 dotnet 框架)。
如果您开发应用程序(或服务),您可以监视文件系统更改并执行自定义操作(使用您的代码,这样您就可以执行您需要的任何操作)。
您甚至可以设置哪个目录监视器以及是否也需要子目录。
文件夹和文件的权限可能会出现问题,但这不是您问题的一部分:)
One way to catch file renames, deletes and other is to use FileSystemWatcher class (using dotnet framework).
If you develop an application (or a service) you can monitor file system changes and execute a custom action (with your code, so you can do anything you need).
You can even set which directory monitor and if you want subdirs too.
Problems can arise with permissions on folders and files, but this is not part of your question :)