.NET FileSystemWatcher 可以与 Mac OS 上的 Mono 一起使用吗?
我可以使用 FileSystemWatcher 编写 Microsoft .NET 程序并期望它无需更改即可在使用 Mono 的 Mac OS X 下运行吗?
Can I write a Microsoft .NET programm with a FileSystemWatcher and expect it to work under Mac OS X with Mono without changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,无需更改即可运行。 Mono 包含适用于所有平台的 FileSystemWatcher。
请记住,您的代码可能需要使用 Path.PathSeperator 与不同平台上目录名称的不同格式化方式更加兼容。
Yes, it will work without changes. Mono includes a FileSystemWatcher for all platforms.
Keep in mind that your code might want to use Path.PathSeperator to be more compatible with the different ways directory names are formatted on different platforms.
截至 2011 年 11 月,它已存在并可用于某些用途,但并非全部。
例如,LastWrite 和 Size 似乎不适用于 OSX。
As of November 2011, it exists and works for some uses, but not all.
For example, LastWrite and Size dont seem to work on OSX.