在VB.net/WPF中观看文件夹

时间:2012-01-22 12:38:23

标签: vb.net filesystemwatcher

我在尝试查看如何查看文件夹以进行更改时遇到问题。这是我有多远:

Class MainWindow

<PermissionSet(SecurityAction.Demand, Name:="FullTrust")> _
Private Sub Window_Loaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles MyBase.Loaded
    Dim Path As String = "C:\Temp"

    ' Create a new FileSystemWatcher and set its properties.
    Dim watcher As New FileSystemWatcher()
    watcher.Path = Path
    ' Watch for changes in LastAccess and LastWrite times, and
    ' the renaming of files or directories. 
    watcher.NotifyFilter = (NotifyFilters.LastAccess Or NotifyFilters.LastWrite Or NotifyFilters.FileName Or NotifyFilters.DirectoryName)
    ' Only watch text files.
    watcher.Filter = "*.txt"

    ' Add event handlers.
    AddHandler watcher.Changed, AddressOf OnChanged
    AddHandler watcher.Created, AddressOf OnChanged
    AddHandler watcher.Deleted, AddressOf OnChanged
    AddHandler watcher.Renamed, AddressOf OnRenamed

    ' Begin watching.
    watcher.EnableRaisingEvents = True

End Sub

' Define the event handlers.
Private Shared Sub OnChanged(ByVal source As Object, ByVal e As FileSystemEventArgs)
    ' Specify what is done when a file is changed, created, or deleted.
    MsgBox("File: " & e.FullPath & " " & e.ChangeType)
End Sub

Private Shared Sub OnRenamed(ByVal source As Object, ByVal e As RenamedEventArgs)
    ' Specify what is done when a file is renamed.
    MsgBox("File: {0} renamed to {1}", e.OldFullPath, e.FullPath)
End Sub
End Class

问题是当程序退出时没有错误代码的文件夹发生更改。我已经阅读了一些相关帖子,我知道它与线程安全有关。但是我不知道如何使这个程序“线程安全”。谁能给我一些建议?谢谢!

1 个答案:

答案 0 :(得分:3)

我在这里没有遇到任何线程安全问题。 我认为问题是:

MsgBox("File: {0} renamed to {1}", e.OldFullPath, e.FullPath)

应该是

MsgBox(String.Format("File: {0} renamed to {1}", e.OldFullPath, e.FullPath))
相关问题