Rust로 폴더 감시자 만들기
오늘은 특정 폴더를 감시하여 이벤트를 받아오는 프로그램을 만들어보도록 하겠습니다. notify라는 라이브러리를 사용하면 쉽게 만들 수 있습니다. 먼저 해당 라이브러리 의존성을 추가해 줍니다. > cargo add notifycargo를 사용하여 추가하거나 Cargo.toml에 직접 추가합니다 [dependencies] notify = "5.1.0" watch 함수를 제작합니다. notify에서 RecommendedWatcher, Watcher, RecursiveMode, Config를 import 해줍니다 use std::path::Path; use notify::{RecommendedWatcher, Watcher, RecursiveMode, Config}; fn watch(path:P) -> notif..
2023.03.05