This WinAPI function retrieves information that describes the changes within the specified directory
-2
votes
2answers
89 views
Access violation reading location 0xba2f1498
I am coding a programming to watch folder. I use FileWatch.h library. This is my FileWatch.h
#ifndef FILEWATCH_H
#define FILEWATCH_H
class FileChangeObserver
{
public:
virtual ...
0
votes
1answer
98 views
ReadDirectoryChangesW Error in WIN32 API project? [duplicate]
void TestDirChanges(LPCWSTR path)
{
/*
FileName member of FILE_NOTIFY_INFORMATION has only one WCHAR according to definition. Most likely, this field will have more characters.
So the expected size ...
0
votes
1answer
141 views
GetQueuedCompletionStatusEx(), ReadDirectoryChangesW()
I am using GetQueuedCompletionStatusEx() and ReadDirectoryChangesW() to try to receive notifications of changes to multiple filesystem hierarchies.
I noticed that I would receive completion packets ...
0
votes
2answers
225 views
Wchar_t to string Convertion
I want to convert the strFileNotifyInfo[1].FileName(Wchar_t) to a string so that i can see the filepath. but i can't make it work.
Here is my code:
while(TRUE)
{
if( ReadDirectoryChangesW( hDir, ...
0
votes
0answers
168 views
ReadDirectoryChangesW seems to be missing events
I've been trying to get ReadDirectoryChangesW to monitor a subtree for file changes, but I have found that I am getting inconsistent results. The following is a self contained test case which ...
0
votes
1answer
319 views
CreateFile ,ReadDirectoryChanges issue
I’m using ReadDirectoryChangesW to spy a folder that I opened with CreateFile, once a file was added I call a function (OnFileChanged) that read the size and open it for reading, my application works ...
3
votes
0answers
82 views
Using FileSystemWatcher on DataOntap
I have a project that watches file creation/deletion activity on a network share which is currently hosted by a Windows Server machine, but I'm considering moving the files to a NetApp box running ...
0
votes
2answers
300 views
ReadDirectoryChangesW issues
I'am using ReadDirectoryChangesW to watch a directory changes asynchronously, based on this question I implement a function that watch a given directory, but I still get the error message ...
1
vote
0answers
218 views
ReadDirectoryChangesW File Moved Workaround
Background
Windows API for monitoring file-system changes ReadDirectoryChangesW cannot reliably report a file move operation. Instead it just notifies Deleted + Created.
Question
What workarounds ...
3
votes
0answers
316 views
Why ReadDirectoryChangesW, with only FILE_NOTIFY_CHANGE_LAST_WRITE filter, does signal more than one event on file editing?
I am monitoring in separate thread application configuration file, which in some cases may be INI in another XML or another.
Code of thread monitoring directory (in Delphi) is something like this:
...
1
vote
2answers
269 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 ...
0
votes
3answers
226 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 ...
5
votes
3answers
547 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 ...
2
votes
3answers
571 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 = ...
4
votes
1answer
751 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 ...
6
votes
2answers
2k 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).
...
1
vote
0answers
306 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
1k 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 ...
5
votes
1answer
703 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 ...
2
votes
1answer
1k 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
1k 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 ...
16
votes
4answers
7k 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 mean I want my code to be notified whenever a file's contents are ...
2
votes
1answer
812 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, ...
0
votes
3answers
315 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 ...
4
votes
3answers
895 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 ...
6
votes
2answers
4k 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;
...
2
votes
2answers
1k 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 ...
2
votes
1answer
982 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, ...
1
vote
1answer
928 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:
...
3
votes
1answer
6k 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 ...
0
votes
1answer
373 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 ...
14
votes
2answers
4k 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 ...