Can i get filesystemwatcher events to occur on the main UI thread ?. Currently file changes are fired off on their own threads.
Simply set the FileSystemWatcher.SynchronizingObject property to the form instance. Same thing as calling BeginInvoke() but done automatically for you. Boilerplate code:
public Form1() {
InitializeComponent();
fileSystemWatcher1.SynchronizingObject = this;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With