Hi Trapulo,
Based on my understanding, you want to be notified when the file system on
Win98/Me is changed.
Yes, you can not use FileSystemWatcher class, because internally, it
encapsulates ReadDirectoryChangesW Win32 API, which only existed on WinNT
series OS.
In Win98/Me, I think you may P/invoke win32 API FindFirstChangeNotification
to get what you want, for more information, please refer to:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base
/findfirstchangenotification.asp
and a sample at:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base
/obtaining_directory_change_notifications.asp
==============================
Please apply my suggestion above and let me know if it helps resolve your
problem.
Thank you for your patience and cooperation. If you have any questions or
concerns, please feel free to post it in the group. I am standing by to be
of assistance.
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! -
www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.