[C#]FileSystemWatcher 예제 FileSystemWatcher는 특정 디렉토리에서의 파일의 생성, 수정, 삭제, 이름변경 시 모니터링 할 경우 사용 할 수 있는 클래스입니다. private void Form1_Load(object sender, EventArgs e) { fileSystemWatcher1.Filter = "*.txt";//모니터링 할 파일의 확장자 정의. 기본은 *.* 모든 확장자입니다. fileSystemWatcher1.Path = "C:\\";/.. C# 2016.04.04