用FileSystemWatcher监控作业

2008-02-23 06:49:40来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

  要使用FileSystemWatcher,首先要创建一个类的实例。

Private dirWatcher As New System.IO.FileSystemWatcher()

  接下来,通过设置Path属性设置FileSystemWatcher来监控指定目录。可以设置IncludeSubdirectories属性监控指定目录下的所有子目录。

dirWatcher.Path = "C:\Temp"
dirWatcher.IncludeSubdirectories = False

  Filter属性指定目录内要监控的文件。这个属性接受通配符,所以所有的文本文件都可以通过将它设定为"*.txt"文件来监控。指定特殊文件名后只会对那个文件起作用。

dirWatcher.Filter = "*.txt"

  NotifyFilter属性决定被监控的指定文件的属性。

dirWatcher.NotifyFilter = System.IO.NotifyFilters.LastAccess
Or _
System.IO.NotifyFilters.LastWrite

  在设定FileSystemWatcher属性后,添加事件处理器来捕获事件,并确定它能够激发事件。

AddHandler dirWatcher.Created, AddressOf Me.OnCreation
AddHandler dirWatcher.Changed, AddressOf Me.OnCreation
dirWatcher.EnableRaisingEvents = True

  最后,添加一个新的子程序来处理事件。

Public Shared Sub OnCreation(ByVal source As Object, _
ByVale As System.IO.FileSystemEventArgs)
Debug.WriteLine("File: " & e.FullPath
& " " & e.ChangeType)
End Sub

上一篇: 用运算符Like来比较字符串
下一篇: 复制字符串中的字符

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:VB操作.ini后缀文件的方法

下一篇:利用Internet传输控件来使用FTP