i used the filesystemwatcher as in the following code, but i want the path to include the specific file (RequestedList.txt) as i wrote, but it only works if pointed to a directory, how can i have it work when pointed to a file?

VB Code:
  1. Dim mywatcher As New IO.FileSystemWatcher  'Create new instance of FileSystemWatcher
  2.         mywatcher.Path = Application.StartupPath & "\RequestedList.txt"  'Specify Path to File or Directory. Which ever you need
  3.         mywatcher.NotifyFilter = IO.NotifyFilters.LastWrite Or IO.NotifyFilters.LastAccess Or IO.NotifyFilters.FileName
  4.         AddHandler mywatcher.Changed, AddressOf OnChanged
  5.         AddHandler mywatcher.Created, AddressOf OnChanged  'Add handlers to catch certain events of certain types
  6.         AddHandler mywatcher.Deleted, AddressOf OnChanged  'Use intellisense to see what others are open to you
  7.         mywatcher.EnableRaisingEvents = True     'Start the process