While testing my vb script to monitor a directory for new files, it works fine when the monitored directory is listed as follows:
However, I need to monitor a subdirectory :
and the Windows Script Host will have none of it. Can someone show me how to write this subdirectory path so this will work?
Thank you
Code:
strComputer = "."
strDirToMonitor = "C:\\\\Folder"
Code:
strComputer = "."
strDirToMonitor = "C:\Folder\Subfolder"
Thank you