Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does .NET FileSystemWatcher work with Mono on Mac OS?

Tags:

c#

.net

macos

mono

Can I write a Microsoft .NET programm with a FileSystemWatcher and expect it to work under Mac OS X with Mono without changes?

like image 394
deamon Avatar asked Apr 20 '11 08:04

deamon


1 Answers

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.

like image 151
Jaapjan Avatar answered Sep 27 '22 22:09

Jaapjan