If I understand correctly, this FSearch syntax will;
/G Change to the directory containing the first matching file (also sets /F and overrides /V)
/S Search subdirectories of the specified (or default) path.
/-1 Stop after n matches
...
Read more
/G Change to the directory containing the first matching file (also sets /F and overrides /V)
/S Search subdirectories of the specified (or default) path.
/-1 Stop after n matches
Code:
E:\>timer fsearch /g /s /-1 bp.csv
Timer 1 on: 17:26:23
E:\\Documents\bp\bp.csv
E:\\Documents\vfp\bp\BP.csv
E:\\Utils\BP.csv
Matching lines: 0 Matching files: 3 Total files searched: 3
Timer 1 off: 17:27:12 Elapsed: 0:00:49.463
Read more