从命令行监视新创建的文件
我想知道是否有任何方法(例如程序或代码)可以监视文件夹中创建的新文件?
I was wondering if there is any way e.g. program or code, that can monitor for new files created within a folder or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的,但它在不同操作系统上的工作方式略有不同。
例如 https://github.com/guard/guard 为所有主流系统实现了此功能,因此您可以检查它的源代码。
对于 Windows 通知,请参阅 http://msdn.microsoft.com/ en-us/library/aa365261(VS.85).aspx。
对于 Mac OS X 通知,请参阅 http:// developer.apple.com/library/mac/#documentation/Darwin/Conceptual/FSEvents_ProgGuide/Introduction/Introduction.html
对于 Linux,请参阅 http://www.kernel.org/pub/linux/kernel/people /rml/inotify/自述文件。
Yes this is possible but it works slightly different on different operating systems.
For example https://github.com/guard/guard implements this for all the mainstream systems so you can check its source code.
For Windows notifications see http://msdn.microsoft.com/en-us/library/aa365261(VS.85).aspx.
For Mac OS X notifications see http://developer.apple.com/library/mac/#documentation/Darwin/Conceptual/FSEvents_ProgGuide/Introduction/Introduction.html
For Linux see http://www.kernel.org/pub/linux/kernel/people/rml/inotify/README.