Solve the problem that the Changed event of the FileSystemWatcher class in C # is triggered multiple times.

Source: Internet
Author: User

Fsw = new FileSystemWatcher (System. Environment. CurrentDirectory + "\ conf \", "*. xml ");
Fsw. EnableRaisingEvents = true;
Fsw. policyfilter = policyfilters. LastWrite;
Fsw. Changed + = new FileSystemEventHandler (fsw_Changed );
First, set policyfilter to LastWrite, which shields the Changed event from being triggered due to various external factors such as anti-virus software.
Then set its EnableRaisingEvents attribute as follows:

C # code

In this way, set it to false first, and then set it to true after the file is processed.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.