// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This module provides a way to monitor a file or directory for changes. #ifndef BASE_FILES_FILE_PATH_WATCHER_H_ #define BASE_FILES_FILE_PATH_WATCHER_H_ #include <memory> #include <optional> #include <string> #include <utility> #include "base/base_export.h" #include "base/containers/enum_set.h" #include "base/files/file_path.h" #include "base/functional/callback_forward.h" #include "base/memory/scoped_refptr.h" #include "base/sequence_checker.h" #include "base/task/sequenced_task_runner.h" #include "build/build_config.h" namespace base { // This class lets you register interest in changes on a FilePath. // The callback will get called whenever the file or directory referenced by the // FilePath is changed, including created or deleted. Due to limitations in the // underlying OS APIs, FilePathWatcher has slightly different semantics on OS X // than on Windows or Linux. FilePathWatcher on Linux and Windows will detect // modifications to files in a watched directory. FilePathWatcher on Mac will // detect the creation and deletion of files in a watched directory, but will // not detect modifications to those files. See file_path_watcher_kqueue.cc for // details. // // Must be destroyed on the sequence that invokes Watch(). class BASE_EXPORT FilePathWatcher { … }; } // namespace base #endif // BASE_FILES_FILE_PATH_WATCHER_H_