2

I am not sure if there is any utility which monitors hard drive for any new files getting created.

I am using one application that creates many files on my hard drive but I am not sure how can I monitor those newly created files.

BTW I am using Windows VISTA x64 machine.

Thanks in advance !

Hiren
  • 341
  • 1
  • 4
  • 17

3 Answers3

4

In native code, use a directory change notification.

If you prefer .net, then use FileSystemWatcher.

David Heffernan
  • 587,191
  • 41
  • 1,025
  • 1,442
2

If you are a programmer and know Python, you should check https://fascinator.usq.edu.au/trac/wiki/Watcher

It monitors folders/directory for file changes i.e. created, deletion, modification.

If you are a Java Programmer, you should check WatchService in JDK 7. http://download.oracle.com/javase/tutorial/essential/io/notification.html

CRH
  • 321
  • 2
  • 8
0

Check out the FileSystemWatcher class. It will help you by notifying you when something in a particular directory has changed.

Charlie Salts
  • 12,609
  • 7
  • 47
  • 77