Tagged Questions
This WinAPI function retrieves information that describes the changes within the specified directory
10
votes
1answer
3k views
How to keep ReadDirectoryChangesW from missing file changes
There are many posts on the internet about the ReadDirectoryChangesW API function missing files when there is a lot of file activity. Most blame the speed at which the ReadDirectoryChangesW function ...
9
votes
3answers
3k views
File-level filesystem change notification in Mac OS X
I want my code to be notified when any file under (either directly or indirectly) a given directory is modified. By "modified", I mead I want my code to be notified whenever a file's contents are ...
6
votes
1answer
3k views
Why does ReadDirectoryChangesW omit events?
I use ReadDirectoryChangesW to watch a specified directory and update indexing structures whenever a change is detected. I use the following code (roughly)
var
InfoPointer : PFileNotifyInformation;
...
5
votes
3answers
189 views
When calling ReadDirectoryChangesW, only the first call returns any changes (both sync and async)
The following is a minimal program which uses ReadDirectoryChangesW. The problem I am having is that only the first call to GetQueuedCompletionStatus returns. The second time through the loop it ...
5
votes
1answer
420 views
How to deal with Windows' ReadDirectoryChangesW() and its mixed long/short filename output?
I am developing a piece of C code that uses ReadDirectoryChangesW() to monitor changes under a directory in Windows. I have read the related MSDN entries for ReadDirectoryChangesW() and the ...
4
votes
1answer
349 views
Delphi wait until a file copy process is complete
I have a thread that uses ReadDirectoryChangesW to notify me when a file is added or deleted in a folder.
For each new image, I open the file and create a thumbnail of the image. It would seem ...
4
votes
2answers
474 views
Asynchronous ReadDirectoryChangesW - GetQueuedCompletionStatus always times out
Exactly as it sounds, I'm attempting asynchronous ReadDirectoryChangesW with IO Completion and it isn't working, specifically, GetLastError repeatedly returns 258 (GetQueuedCompletionStatus timeout).
...
3
votes
3answers
575 views
Why use ReadDirectoryChangesW asynchronously?
I've read the documentation for ReadDirectoryChangesW() and also seen the CDirectoryChangeWatcher project, but neither say why one would want to call it asynchronously. I understand that the current ...
2
votes
1answer
527 views
Win32 C++ ReadDirectoryChangesW “creation” and “modification” of file difference detect?
Here is the problem: I monitor a directory using Win32 API ReadDirectoryChangesW function. And I need to distinguish between newly created files and modified files. But there are problems... as always ...
2
votes
2answers
639 views
Can any linux API or tool watch for any change in any folder below e.g. /SharedRoot or do I have to setup e.g. inotify for each folder?
I have a folder with ~10 000 subfolders.
Can any linux API or tool watch for any change in any folder below e.g. /SharedRoot or do I have to setup inotify for each folder? (i.e. I loose if I want to ...
2
votes
1answer
677 views
Why is my ReadDirectoryChangesW not picking up changed files?
I'm sure I am just doing something really dumb and not seeing it but can anyone tell me why the following code would not be picking up changes in the passed in directory?
When calling this code, ...
2
votes
1answer
4k views
How to use ReadDirectoryChangesW() method with completion routine?
I want to use function ReadDirectoryChangesW() in asynchronous mode with I/O completion routine supplied. The question is I don't know how to retrieve the exact information about the change in the ...
1
vote
2answers
70 views
ReadDirectoryChangesW: how to detect buffer overflow when using asynchronously?
I'm using ReadDirectoryChangesW (Windows API) asynchronously in combination with GetQueuedCompletionStatus. How can I detect a possible buffer overflow to understand that at least one file system ...
1
vote
2answers
159 views
ReadDirectoryChangesW blocks deleting the watched directory
I am trying to watch a directory for create/delete/rename changes on windows with python using the ReadDirectoryChangesW API. This is my code and it is working fine:
results = ...
1
vote
0answers
146 views
How to get move event using ReadDirectoryChanges api?
ReadDirectoryChanges windows api does not give file/folder move events(It works with rename events though). Instead It gives deleted and added events. How do we differentiate this from a real delete ...
1
vote
1answer
317 views
Monitoring directory using ReadDirectoryChangesW API
I am trying to monitor a directory e:\test using ReadDirectoryChangesW API.
My Code :
#define UNICODE
#define WIN32_WINNT 0x0500
#include "stdafx.h"
#include <stdio.h>
#include ...
1
vote
1answer
491 views
Setting the last-modified-time of a directory opened for ReadDirectoryChangesW
I hava a Java program that needs to monitor a directory tree for changes. I have JNI code that uses ReadDirectoryChangesW(). The directory is opened like:
HANDLE dirHandle = CreateFile(
path, ...
1
vote
3answers
780 views
How to know a file is finished copying
I’m using ReadDirectoryChangesW to spy a folder, if I’m copying a large file to the folder, I can receive multiple FILE_ACTION_MODIFIED messages, it seems each time windows writes a large chunk of the ...
1
vote
1answer
767 views
Thread deadlock when using ReadDirectoryChangesW asynchronously
I want to monitor in real-time the changes of several directories in one thread, so I decided to use ReadDirectoryChangesW() method asynchronously with GetQueuedCompletionStatus. Here is my code:
...
0
votes
0answers
35 views
Readdirectorychanges not working with big file [closed]
Possible Duplicate:
How to know a file is finished copying
i was working with readdirectorychangesW till i encountered an unwanted behavior.below is short reference the way i am using my ...
0
votes
3answers
75 views
ReadDirectoryChangesW and determining which process caused the change
I've been searching and searching on how I can determine which processes are making changes to which files. It seems like this "feature" is in quite big demand considering the number of questions ...
0
votes
0answers
80 views
Directories cannot be renamed when monitored by ReadDirectoryChangesW
I'm using ReadDirectoryChangesW to monitor a directory recursively on Windows 7. For some reason the directories directly contained within the monitored directory cannot be renamed. Files in the ...
0
votes
3answers
268 views
ReadDirectoryChangesW thinks shortcut is being deleted right after creation
I am using this implementation of ReadDirectoryChangesW to monitor changes to the desktop. My program plans to run some small program when a file is created on the desktop.
Now the problem I am ...
0
votes
1answer
288 views
Can I get the file info which changes in a specified directory using FindFirstChangeNotification and FindNextChangeNofication instead of ReadDirectoryChangesW?
I want to monitor upon a specified directory and if there's any file or subdirectory changes, I can be notified. I realize the function with the following simple code segment:
UINT ...