Viknash Samy80503
1 discussion post
How do I watch a folder and sub folders for files with this pattern ?
abc_output_2016_11_17_16_49_16_0.txt or abc_output_1.txt
This pattern abc_output*.* and this regex doesn't work either ^abc_output_[0-9_]+\.txt$
Watch itself seems to be working if I do *.* . Just the pattern selection doesn't seem to work for me.
This is unfortunately a bug in the current version, but will be all fixed up in the next version. In the meantime, you should be able to match the files by doing this:
*abc_output*.*
Hope that helps!