Is there an easy way to do a file search and have a wildcard as one of the subdirectories?
I have a disk structure like
Q:dataAA123
Q:dataAA126
Q:dataBB156
Q:dataCC275
I know the three digit directory, but I do not know the two letter directory name.
I would like to do Dir(“Q:data*156*.tif”) and have it return the tifs in Q:dataBB156
Dir hates * in the directory string.
Application.FileSearch doesn’t crash like Dir, but doesn’t accept the wildcard for .LookIn
Is there anything that works? TIA –Sam