I cant locate one of my do-files anymore. Is it possible to search windows by line of code in the Stata file?
-
Login or Register
- Log in with
filelist, pattern(*.do) gen strL contents = fileread(dirname+"/"+filename) gen long foundit = strpos(contents, "my search text") list dirname filename if foundit > 0
Comment