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 DataOntap. Their API documentation says they support ReadDirectoryChangesW, which is what FileSystemWatcher is using below the covers, but I'm concerned that it might not be a full implementation. Are there any pitfalls I should watch out for?
Using FileSystemWatcher on DataOntap
796 Views Asked by directedition At
1
There are 1 best solutions below
Related Questions in FILESYSTEMWATCHER
- FileSystemWatcher works reliably, unless I write to a log file
- Powershell - Nested loops seeming to ignore if statement
- FileSystemWatcher - buffer overrun on empty directory - do changes "cache" somewhere?
- FileSystemWatcher - reasons for InternalBufferOverflow
- How to properly handle a list of IDisposable items in my Dispose()?
- How to offload SQL code to another task / thread - FileSystemWatcher
- FileSystemWatcher does not trigger on Azure
- Comparing 2 text files while actively looking for changes
- How to make FileSystemWatcher events run in an STA Thread in a console application?
- Stream file, file in use, FileSystemWatcher and question about threads
- High cpu usage Windows forms
- FileSystemWatcher/File.ReadAllLines causing IO Exception: Could not access file because it is being used by another process
- FileSystemWatcher doesn't work on FTP file drop
- Textbox value not updating in asp.net
- Is there a "folder fingerprint" to detect if a folder's contents have changed between two points in time? I cannot use FileSystemWatcher
Related Questions in READDIRECTORYCHANGESW
- How to prevent ReadDirectoryChangesW from returning spurious Modified events when iterating directory
- What is the working mechanism under the hood for ReadDirectoryChangesW()?
- Understanding DirectoryWatcher
- How to detect when a folder change is completed?
- Windows explorer monitors directory changes in a tricky way?
- Change Install Directory If Running Catalina But Not on Mojave
- How to break ReadDirectoryChangesW function in MFC?
- ReadDirectoryChangesW only places single event in the FILE_NOTIFY_INFORMATION buffer
- ReadDirectoryChangesW Asynchronous Completion routine called after I close the handle
- Why is GetOverlappedResult giving 0 bytes result for ReadDirectoryChangesW?
- ReadDirectoryChangesW not reporting last write events
- Who is responsible for deleting FILE_NOTIFY_INFORMATION.FileName?
- Watching TXT file updates through Python
- ReadDirectoryChanges buffer alignment issue error 998 Windows
- Python script to monitor a directory triggers twice when a file is updated. Why?
Related Questions in NETAPP
- Getting "There is no connectivity" when trying to manage an FSxN File System within BlueXP
- why apache Kafka documentation not gives the ability to use Kafka over NFS as Netapp
- cant save user uploads in object storage
- Why is Remove-NcSnapmirror removing SnapMirror relationship on BOTH source and destination? (NETAPP ONTAP PowerShell Toolkit)
- Get info and terminate sessions on Azure NetApp Files via API
- Problem verifying content uploaded to Azure Blob
- ApiProtocolException Connection Error with NetApp API?
- 'Failed to Load' error message when attempting to configure Cloud Volumes Services (CVS) on GCP
- NetApp ONTAP Ansible playbook working for single cluster, but failing with inventory file setup
- NetApp & S3 put-bucket-lifecycle-configuration with a JSON file return all time MalformedXML
- NetApp ONTAP with Python netapp-ontap - create vault policy
- Enable SMB encryption for incoming SMB traffic using REST API
- STATUS_ACCESS_DENIED (0xc0000022): Could not connect to - Azure Netapps File Share (Network Drive) access with smbj JAVA library
- How to find SPNAME in Azure portal
- Collect Azure Netapp Volume metrics
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I don't know specifically about NetApp and DataOntap, but see this other question and its various answers:
FileSystemWatcher and windows 7
It seems that people have been having a lot of trouble with FileSystemWatcher, particularly when used with a network share.