FileSystemEventArgs.FullPath Property
.NET Framework (current version)
Gets the fully qualifed path of the affected file or directory.
Assembly: System (in System.dll)
The following example demonstrates the FullPath property. This code example is part of a larger example provided for the FileSystemEventArgs class.
' This method is called when a file is created, changed, or deleted. Private Sub OnChanged(ByVal source As Object, ByVal e As FileSystemEventArgs) ' Show that a file has been created, changed, or deleted. Dim wct As WatcherChangeTypes = e.ChangeType Console.WriteLine("File {0} {1}", e.FullPath, wct.ToString()) End Sub
FileIOPermission
for reading files. Associated enumeration: FileIOPermissionAccess.Read
.NET Framework
Available since 1.1
Available since 1.1
Show: