Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(os/gfsnotify):add watcher path to moniter the dir which create after start #3806

Closed
wants to merge 7 commits into from

Conversation

TenYearOldJAVA
Copy link

When using the fsnotify library to monitor file system changes, a common requirement is to watch not only a specific directory but also all of its subdirectories, including those that are created after the monitoring process has started. However, fsnotify does not natively support recursive watching of directories. This limitation means that if a new subdirectory is created within a watched directory, changes within this new subdirectory will not be detected unless it is explicitly added to the watch list.

Manual Recursion: Users must manually implement a recursive mechanism to add all existing subdirectories to the watch list at the start and continue to monitor for new directories.So this function is append the watcher path,if path is not in callbackMap,it will not append.

@gqcn
Copy link
Member

gqcn commented Sep 28, 2024

@TenYearOldJAVA Thanks for contribution to goframe, we are reviewing this which might need some time.

@gqcn gqcn self-requested a review September 29, 2024 06:49
@gqcn
Copy link
Member

gqcn commented Sep 29, 2024

@TenYearOldJAVA Hello, actually the gfsnotify package already implemented the recursive watching feature when subfolders and sub-files created under folders that aleady watched, the codes are here:

case event.IsCreate():

I also submit a new PR to improve the implements and add new unit testing case for this here: #3830

So I think this PR might be closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants