파일 시스템 변경 알림을 수신하면서 디렉터리 또는 디렉터리의 파일이 변경되면 이벤트를 발생시킵니다. public class FileSystemWatcher : System.ComponentModel.Component, System.ComponentModel.ISupportInitialize FileSystemWatcher 를 사용하면 디렉토리의 변경을 알수 있다. 초기화 private FileSystemWatcher watcher; public void init() { watcher = new FileSystemWatcher(); watcher.Path = galleryDirectry; watcher.NotifyFilter = NotifyFilters.FileName | NotifyFilters.Dire..