illustrates the FileSystemWatcher class : File « File Stream « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » File Stream » FileScreenshots 
illustrates the FileSystemWatcher class
illustrates the FileSystemWatcher class

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

 /*
  Example15_9.cs illustrates the FileSystemWatcher class
*/

using System;
using System.IO;

public class Example15_9 
{

  // event handler for file change
  public static void OnChanged(object source, FileSystemEventArgs e
  {
    // dump info to the screen
    Console.WriteLine("Change to " + e.FullPath + ": " +
     e.ChangeType);
  }

  public static void Main() 
  {

    // create a watcher for the c: drive
    FileSystemWatcher fsw = new FileSystemWatcher("c:\\");
    fsw.IncludeSubdirectories = true;

    // hook up the event handler
    fsw.Changed += new FileSystemEventHandler(OnChanged);

    // turn on file watching
    fsw.EnableRaisingEvents = true;
    
    // And wait for the user to quit
    Console.WriteLine("Press any key to exit");
    int i = Console.Read();

  }

}


           
       
Related examples in the same category
1.Get file Creation TimeGet file Creation Time
2.Delete a file
3.Get File Access Control
4.illustrates the FileAttributes enumerationillustrates the FileAttributes enumeration
5.illustrates the FileInfo classillustrates the FileInfo class
6.File class to check whether a file exists, open and read
7.Uses methods in the File class to check whether a file exists
8.Uses methods in the File class to check the status of a file
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.