Home > Microsoft .Net Development Tips > C# Development > File watcher utility
Win Development Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

C# DEVELOPMENT

File watcher utility


Manish Mehta
07.14.2003
Rating: -3.67- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


Please let other users know how useful this tip is by rating it below. Do you have a tip or code of your own you'd like to share? Submit it here.


.NET provides a hierarchical set of classes, developed preferably using C#, that provides all the services and APIs necessary for application development. API's for I/O, file system, data access, Remoting, etc., are a part of the Base Class Framework.

System.IO namespace is one of the class libraries in the base class framework that provides IO operation. This library also offers other services apart from basic IO operation. FileSystemWatcher is one of the members of IO library that gives us the access to system functionalities we could never have imagined, such as the FileWatcher utility. In this tip, I am going to demonstrate the FileWatcher utility, which will monitor a folder for creation of new files and raise an event if a new file is made. To get this sort of functionality in VB6 was a major pain as we had to place hooks and stuff. In .NET, it's become much simpler.

This sample code places a FileWatcher to monitor "C:" for creation of a new file. As soon as a new file is created, an event is raised in our application.

Imports System
Imports  System.IO
Class  Fw

  Shared Sub main()
    Dim fw As New
FileSystemWatcher()
    fw.Path = "c:" ' Path to monitor 
    fw.IncludeSubdirectories = True
    fw.Filter = "*.*" 'additional filtering 

    'Add the event handler for creation of new files only 
   AddHandler fw.Created, New FileSystemEventHandler(AddressOf OnFileEvent)

   fw.EnableRaisingEvents = True 
   'Dont Exit 
   console.readline()
  End Sub 

    'Event that will be raised when a new file is created 
    Shared Sub OnFileEvent(ByVal source As Object ,
ByVal  e As 
   FileSystemEventArgs)
    console.writeline("New File Created in C: ")
   End Sub
End Class
 

Compile the file as Vbc fw.vb /r:system.io.dll /r:system.dll. Run the fw.exe and create a new file in "C:". You will notice a message on the console, "New file Created in "C:".


Source: DotNetExtreme.com

Rate this Tip
To rate tips, you must be a member of SearchWinDevelopment.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
C# Development
Let Microsoft StyleCop tame your wild C#
Picking a .NET smart client communications technology
LINQ beyond queries: Strong-typed refection
Book excerpt: An introduction to DSL tools
Assembly versioning in the .NET Framework 2.0
Book excerpt: Creating graphical output using the .NET Compact Framework
On Extension Methods in C# and .NET Framework 3.5
Generate RSA public and private keys, export to XML
Book excerpt: Upgrading to Visual Studio 2005
Learning .NET: Tips for getting started with .NET development

C# programming language
Inside Visual Studio 2010
Mono 2.0 moves .NET apps to Linux - includes migration analyzer
LINQ beyond queries: Strong-typed refection
Assembly versioning in the .NET Framework 2.0
Book excerpt: Creating graphical output using the .NET Compact Framework
Visual Studio 2008 Learning Guide: C# 3.0
Simonyi firm to address divide between domain experts and developers
On Extension Methods in C# and .NET Framework 3.5
Generate RSA public and private keys, export to XML
Book excerpt: Upgrading to Visual Studio 2005

RELATED GLOSSARY TERMS
Terms from Whatis.com − the technology online dictionary
C#  (SearchWinDevelopment.com)
GLib  (SearchWinDevelopment.com)

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Database Programming Solutions - .NET XML, Visual Studio LINQ, ORM .NET
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2000 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts