Is there a way to monitor (e.g. creation) alternate data streams using FileSystemWatcher? Or, perhaps another way? For my application I am not going to implement any polling mechanisms.
Thanks in advance,
Craig
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
FileSystemWatcher can do this by default
When you edit a file’s ADS the timestamp of last modification changes so you can check for that
Afterwards you’ll have to enumerate ADS for the file
This is an example on how to do it