久久―日本道色综合久久,亚洲欧美精品在线,狼狼色丁香久久婷婷综合五月,香蕉人人超,日本网站黄,国产在线观看不卡免费高清,无遮挡的毛片免费

2023信創(chuàng)獨角獸企業(yè)100強
全世界各行各業(yè)聯(lián)合起來,internet一定要實現(xiàn)!

用FileSystemWatcher監(jiān)控作業(yè)

2004-02-22 eNet&Ciweek

  要使用FileSystemWatcher,首先要創(chuàng)建一個類的實例。

Private dirWatcher As New System.IO.FileSystemWatcher()

  接下來,通過設置Path屬性設置FileSystemWatcher來監(jiān)控指定目錄。可以設置IncludeSubdirectories屬性監(jiān)控指定目錄下的所有子目錄。

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

  Filter屬性指定目錄內(nèi)要監(jiān)控的文件。這個屬性接受通配符,所以所有的文本文件都可以通過將它設定為"*.txt"文件來監(jiān)控。指定特殊文件名后只會對那個文件起作用。

dirWatcher.Filter = "*.txt"

  NotifyFilter屬性決定被監(jiān)控的指定文件的屬性。

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

  在設定FileSystemWatcher屬性后,添加事件處理器來捕獲事件,并確定它能夠激發(fā)事件。

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

相關頻道: eNews

您對本文或本站有任何意見,請在下方提交,謝謝!

投稿信箱:tougao@enet16.com